摘要:
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_ 阅读全文
摘要:
#include <list> #include <iterator> …… list<int> li = {1,2}; list<int>::iterator it = prev(li.end()); //此时 it 指向 2 阅读全文
摘要:
class Solution { private: vector<vector<bool>>* haveVisit; vector<vector<int>> memo; public: bool exist(vector<vector<char>>& board, string word) { ha 阅读全文