
CareerCup
文章平均质量分 80
还有多远
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
解码数字序列
问题:指定26个字符的编码方式原创 2014-07-25 13:51:34 · 764 阅读 · 0 评论 -
求单词最短的确切前缀表示
是今天看到CareerCup上的问题:#include #include #include #include using namespace std;class WordNotFoundException : public exception{private: string description;public: WordNotFoundException(const st原创 2014-10-27 19:38:29 · 609 阅读 · 0 评论 -
CarrerCup-多叉树上的最长连续路径
今天在CarrerCup上看到了一个问题,好像还没有好的答复,感觉可以用树形DP来做。题目连接:http://www.careercup.com/question?id=6285363834257408问题原文:in a tree any root can have any number of children. Every node has an integer value. Find原创 2015-03-10 18:31:10 · 1591 阅读 · 0 评论 -
CarrerCup-机器人走二维网格
题目连接:http://www.careercup.com/question?id=5697293959299072题目原文:A robot has to move in a grid which is in the form of a matrix. It can go to 1.) A(i,j)--> A(i+j,j) (Down) 2.) A(i,j)--> A(i,i+j)原创 2015-03-10 20:08:33 · 641 阅读 · 0 评论