摘要: list<pair<int,int>> li ; li.push_front({23,1}); //对 li.emplace_front(23,1); //对 //li.push_front(1,2) ; //错 //li.emplace_front({1,2}) ; //错 li.emplace_ 阅读全文
posted @ 2021-01-13 20:41 zeroPatrick 阅读(258) 评论(0) 推荐(0) 编辑
摘要: #include <list> #include <iterator> …… list<int> li = {1,2}; list<int>::iterator it = prev(li.end()); //此时 it 指向 2 阅读全文
posted @ 2021-01-13 20:13 zeroPatrick 阅读(2391) 评论(0) 推荐(0) 编辑
摘要: class Solution { private: vector<vector<bool>>* haveVisit; vector<vector<int>> memo; public: bool exist(vector<vector<char>>& board, string word) { ha 阅读全文
posted @ 2021-01-13 11:43 zeroPatrick 阅读(818) 评论(0) 推荐(0) 编辑