Givennpoints on a 2D plane, find the maximum
number of points that lie on the same straight line./** * Definition for a
point. * struct Point { * ...
分类:
其他好文 时间:
2014-06-07 00:31:01
阅读次数:
233
程序员必看书籍(转载)C++: Prata《C++ Primer
Plus》:基础,第一本书。(之前的版本也可,不过推荐最新的) Lippman《Inside C++ Object
Model》:初级,加深语言层次上的理解。不过有点小老了。里面的cfront编译器早退出江湖好久了。思想值得学...
分类:
其他好文 时间:
2014-06-06 20:09:19
阅读次数:
328
原题地址:https://oj.leetcode.com/problems/triangle/题意:Given
a triangle, find the minimum path sum from top to bottom. Each step you may move
to adjacent n...
分类:
编程语言 时间:
2014-06-06 17:31:34
阅读次数:
397
Implement
pow(x,n).要点:1、注意n是正数还是负数2、当n是负数时,注意n最小值时的处理方法:INT_MIN的绝对值比INT_MAX大1;3、当n为0时,任何非零实数的0次方都是14、尽量使用移位运算来代替除法运算,加快算法执行的速度。5、x取值为0时,0的正数次幂是1,而负数次幂...
分类:
其他好文 时间:
2014-06-06 15:52:27
阅读次数:
274
Problem DescriptionGiven a circle sequence
A[1],A[2],A[3]......A[n]. Circle sequence means the left neighbour of A[1] is
A[n] , and the right neighbou...
分类:
其他好文 时间:
2014-06-06 14:52:21
阅读次数:
247
C 语言静态链表实现可运行源代码staticlink.h#include #include
#define OK 1#define TRUE 1#define FALSE 0#define ERROR 0#define MAX_SIZE 100
typedef int Status;typed...
分类:
其他好文 时间:
2014-06-06 14:14:15
阅读次数:
220
将sql文件导入到mysql时候,就一直报这个错误。我试过网上各种方法都行不通。最后将下面一句执行了一下就可以了,而且没有重启mysql。
SET GLOBAL max_allowed_packet=67108864;...
分类:
数据库 时间:
2014-06-04 13:13:30
阅读次数:
303
Givennpoints on a 2D plane, find the maximum
number of points that lie on the same straight line.public class Solution { /**
* This program is used t....
分类:
其他好文 时间:
2014-06-03 17:05:21
阅读次数:
434
这里以3次方来举例讲一下这题的做法,其它维类似。如果要求某一个值的3次方那么sum =
t^3,设t = x+y。那也就是sum = (x+y)^3.假如我让每个数都加z t = x+y+z,我可以让新的y =
y+z,这里发现新来的总会加在y上,那么可以给他一个延迟,slz,那么新的值t = t ...
分类:
其他好文 时间:
2014-06-03 16:14:05
阅读次数:
349
(from zhangwuji) $$\bex
\sum\limits_{n=0}^{\infty}\dfrac{n^3+2n+1}{(n^4+n^2+1)n!},\quad
\sum\limits_{n=0}^{\infty}\dfrac{1}{(n^4+n^2+1)n!}. \eex$$解答: ...
分类:
其他好文 时间:
2014-06-03 15:31:55
阅读次数:
252