摘要: 一、Gray Code 1 class Solution 2 { 3 public: 4 vector grayCode(int n) 5 { 6 vector result={0}; 7 if(n==0) return result; 8 ... 阅读全文
posted @ 2015-05-15 09:10 Ryan in C++ 阅读(290) 评论(0) 推荐(0)