最近公共祖先 发表于 2016-10-10 | 分类于 算法 | Given a binary tree, find the lowest common ancestor of two given nodes in the tree.如果这个二叉树是一个二叉排序 ... 阅读全文 »
测试一 发表于 2016-09-09 | 分类于 Algorithm | Implement int sqrt(int x).Compute and return the square root of x. 实现开根号运算,由于输入输出是int, ... 阅读全文 »
数学问题 发表于 2016-08-17 | 分类于 算法 | 12345678910111213141516171819202122232425262728//求a与b的最大公约数int gcd(int b, int a){ if (b == 0) return a; else return gcd(b, a%b);}//判e ... 阅读全文 »