上一页 1 2 3 4 5 6 7 ··· 9 下一页
摘要: 344.反转字符串 mydemo--(一次就过)--(成功) class Solution { public: void reverseString(vector<char>& s) { int len = s.size(); char tmp; int i=0; int j = len-1; wh 阅读全文
posted @ 2023-09-14 14:04 zz子木zz 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 454.两数相加 Ⅱ mydemo--(超时失败) class Solution { public: int fourSumCount(vector<int>& nums1, vector<int>& nums2, vector<int>& nums3, vector<int>& nums4) { 阅读全文
posted @ 2023-09-13 16:22 zz子木zz 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 242. 有效的字母异位词 mydemo--(成功)--(学了卡哥的思路) class Solution { public: bool isAnagram(string s, string t) { int alphabet = 26; int hash[alphabet]; for(int i=0 阅读全文
posted @ 2023-09-11 13:27 zz子木zz 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 24. 两两交换链表中的节点 mydemo(超时) /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode() : val(0), next(nullpt 阅读全文
posted @ 2023-09-10 10:07 zz子木zz 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 203.移除链表元素 链表定义 struct ListNode { int val; ListNode* next; ListNode(): val(0), next(NULL) {}; ListNode(int x): val(x), next(NULL) {}; ListNode(int x, 阅读全文
posted @ 2023-09-09 10:40 zz子木zz 阅读(205) 评论(0) 推荐(0) 编辑
摘要: ## 977.有序数组的平方 双指针法 因为负数平方后也会变大,所以较大的平方值只可能在靠近两端的位置,越往中间走平方值必定越小。 > 所以,在原数组两端各定义一个指针,慢慢往中间走,然后把平方值按顺序放到新数组里即可。 ```c++ class Solution { public: vector 阅读全文
posted @ 2023-09-08 11:13 zz子木zz 阅读(269) 评论(0) 推荐(0) 编辑
摘要: # 数组 ## 704.二分查找 mydemo ```c++ class Solution { public: int search(vector& nums, int target) { int len = nums.size(); //cout target) { right = mid - 1 阅读全文
posted @ 2023-09-07 00:41 zz子木zz 阅读(160) 评论(0) 推荐(0) 编辑
摘要: git commit 当前*的分支提交记录 git branch <brachname> <ref> 建立分支>git branch newImage<ref>不填的话,就会在当前HEAD处或*处创建分支 git checkout 切换分支>git checkout newImage git che 阅读全文
posted @ 2023-08-30 19:21 zz子木zz 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 在虚拟环境中输入: ``` which pip ``` 检查一下路径,如果是在环境中的路径,那就方向大胆的用 阅读全文
posted @ 2023-08-10 15:58 zz子木zz 阅读(20) 评论(0) 推荐(0) 编辑
摘要: conda 去这下包:https://anaconda.org/ conda install --use-local /home/pku/app/d2l-0.17.6-pyhd8ed1ab_0.tar.bz2 pip 去这下包:https://pypi.org/ pip install /home/ 阅读全文
posted @ 2023-08-10 15:55 zz子木zz 阅读(127) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 9 下一页