上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 21 下一页
摘要: #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) 编辑
摘要: int main(){ vector<vector<int>> ans; ans.emplace_back({1,1,1}); //报错 ans.push_back({1,1,1}); //OK return 0; } 阅读全文
posted @ 2021-01-12 13:12 zeroPatrick 阅读(118) 评论(0) 推荐(0) 编辑
摘要: void quickSort(vector<int>& nums, int start, int end){ if(start >= end) return; int left = start, right = end; int pivot = nums[left]; while(left < ri 阅读全文
posted @ 2021-01-12 12:50 zeroPatrick 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 构造函数: 先基类 后子类 子类构造函数可能需要使用基类元素 析构函数: 先子类 后基类 Father *pfather=new Son; delete pfather; 如果基类的析构函数不定义为虚函数的话,此时,只有基类会被析构,子类不会被析构。 所以,如果一个类有可能被继承的话,应将其析构函数 阅读全文
posted @ 2021-01-11 21:58 zeroPatrick 阅读(598) 评论(0) 推荐(0) 编辑
摘要: bool check_size(string s, int sz) { return s.size() >= sz; } int main() { vector<string> strs = { "axx", "css", "bww", "ssdde", "awweerf" }; int sz = 阅读全文
posted @ 2021-01-10 00:10 zeroPatrick 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 求解 x的n次方 class Solution { public: double myPow(double x, int n) { if(n == 0 || x == 1) return 1; double ans = 1; long k = n; if(k < 0){ k = -k; x = 1/ 阅读全文
posted @ 2021-01-07 17:41 zeroPatrick 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 转载自:https://www.cnblogs.com/1miharu/p/11333297.html /* 底数 指数(二进制) sum 初始 3 1101 3^1 3^2 110 3^1 3^4 11 3^1 * 3^4 3^8 1 3^1 * 3^4 * 3^8 --> 3^13 */ #in 阅读全文
posted @ 2021-01-07 17:40 zeroPatrick 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 转载自:https://leetcode-cn.com/problems/zhong-jian-er-cha-shu-lcof/solution/4chong-jie-fa-di-gui-zhan-dui-lie-by-sdwwld/ 方法一:使用栈解决 如果使用栈来解决首先要搞懂一个知识点,就是前 阅读全文
posted @ 2021-01-07 14:10 zeroPatrick 阅读(183) 评论(0) 推荐(0) 编辑
摘要: ListNode* reversePrint(ListNode* head) { //*******************链表反转********************* ListNode* last = nullptr; ListNode* cur = head; while(cur != n 阅读全文
posted @ 2021-01-06 20:56 zeroPatrick 阅读(36) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 21 下一页