摘要:
http://blog.csdn.net/rein07/article/details/6741661 阅读全文
posted @ 2013-04-21 15:24
代码改变未来
阅读(105)
评论(0)
推荐(0)
摘要:
class Solution { private: vector<int> f; public: int getF(int index) { if (index < 0) return 1; else return f[index]; } int numDecodings(string s) { // Start typing your C/C++ solution below // DO NOT write int main() f... 阅读全文
posted @ 2013-04-21 15:05
代码改变未来
阅读(104)
评论(0)
推荐(0)