algorithm
jiwei_wang
这个作者很懒,什么都没留下…
展开
-
LeetCode OJ习题集
1、二叉查找树的最低公共祖先问题 Given a binary search tree (BST), find the lowest common ancestor (LCA) of two given nodes in the BST. According to the definition of LCA on Wikipedia: “The lowest common ances原创 2015-09-06 10:28:43 · 727 阅读 · 0 评论 -
求N!的末尾0的个数
说明:这个事leetcode上的一个题目,同时据说也是编程之美上的一个题目,那么,自己的解决的过程中遇到了耗时的问题,所以就在此做一个记录,其中,参考了很多网友的意见,在此也就不一一列出了。 法一: int trailingZeroes(int n) { int i,tmp,cnt = 0; for( i = 5; i原创 2015-09-02 21:20:44 · 472 阅读 · 0 评论 -
ZigZag字符长转换
这是leetcode上的一个题目,挺好玩的,在此写下做以记录,其中参考了网友http://blog.csdn.net/zhouworld16/article/details/14121477的笔记,在此表示感谢。 题目如下: The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of原创 2015-09-04 15:44:49 · 554 阅读 · 0 评论