算法
ZeqLi
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
大数.去除小数点后的0
void delete_zero(char* s) { int len; int i; len = strlen(s); for (i = len; i >= 0; i--) { if (s[i] == '0') len--; else break;原创 2012-08-12 18:52:32 · 513 阅读 · 0 评论 -
[LeetCode] Unique Binary Search Trees
Given n, how many structurally unique BST's (binary search trees) that store values 1...n? For example, Given n = 3, there are a total of 5 unique BST's. 1 3 3 2 1原创 2015-01-14 12:57:44 · 487 阅读 · 0 评论
分享