摘要: class Solution {public: bool isAnagram(string s, string t) { if(t=="") return s==""; map m_s; map m_t; int i=0; ... 阅读全文
posted @ 2015-10-24 18:33 *桔子* 阅读(187) 评论(0) 推荐(0)
摘要: class Solution {public: void gameOfLife(vector>& board) { queue temp_state; int row = board.size(); int i,j; if(row =1)... 阅读全文
posted @ 2015-10-24 16:36 *桔子* 阅读(168) 评论(0) 推荐(0)