Merge branch 'master' of github.com:youngyangyang04/leetcode-master

This commit is contained in:
programmercarl
2023-03-02 10:01:22 +08:00
committed by sharky
4 changed files with 63 additions and 2 deletions

View File

@ -79,7 +79,7 @@ map目的用来存放我们访问过的元素因为遍历数组的时候
所以 map中的存储结构为 {key数据元素value数组元素对应的下标}。
在遍历数组的时候只需要向map去查询是否有和目前遍历元素配的数值如果有就找到的匹配对如果没有就把目前遍历的元素放进map中因为map存放的就是我们访问过的元素。
在遍历数组的时候只需要向map去查询是否有和目前遍历元素配的数值如果有就找到的匹配对如果没有就把目前遍历的元素放进map中因为map存放的就是我们访问过的元素。
过程如下:

View File

@ -682,7 +682,33 @@ public class LinkNumbers
## 使用虚拟头结点解决链表翻转
> 使用虚拟头结点,通过头插法实现链表的翻转(不需要栈)
```java
// 迭代方法:增加虚头结点,使用头插法实现链表翻转
public static ListNode reverseList1(ListNode head) {
// 创建虚头结点
ListNode dumpyHead = new ListNode(-1);
dumpyHead.next = null;
// 遍历所有节点
ListNode cur = head;
while(cur != null){
ListNode temp = cur.next;
// 头插法
cur.next = dumpyHead.next;
dumpyHead.next = cur;
cur = temp;
}
return dumpyHead.next;
}
```
## 使用栈解决反转链表的问题
* 首先将所有的结点入栈
* 然后创建一个虚拟虚拟头结点让cur指向虚拟头结点。然后开始循环出栈每出来一个元素就把它加入到以虚拟头结点为头结点的链表当中最后返回即可。
@ -720,3 +746,4 @@ public ListNode reverseList(ListNode head) {
<a href="https://programmercarl.com/other/kstar.html" target="_blank">
<img src="../pics/网站星球宣传海报.jpg" width="1000"/>
</a>

View File

@ -476,6 +476,7 @@ class Solution {
## Python
> 递归法
> 常量空间,递归产生的栈不算
```python
# Definition for a binary tree node.
@ -521,7 +522,9 @@ class Solution:
```
> 迭代法-中序遍历-不使用额外空间,利用二叉搜索树特性
> 迭代法-中序遍历
> 利用二叉搜索树特性,在历遍过程中更新结果,一次历遍
> 但需要使用额外空间存储历遍的节点
```python
class Solution:
def findMode(self, root: TreeNode) -> List[int]:

View File

@ -285,7 +285,38 @@ class Solution {
}
```
**90.子集II**
```java
class Solution {
List<List<Integer>> reslut = new ArrayList<>();
LinkedList<Integer> path = new LinkedList<>();
public List<List<Integer>> subsetsWithDup(int[] nums) {
if(nums.length == 0){
reslut.add(path);
return reslut;
}
Arrays.sort(nums);
backtracking(nums,0);
return reslut;
}
public void backtracking(int[] nums,int startIndex){
reslut.add(new ArrayList<>(path));
if(startIndex >= nums.length)return;
HashSet<Integer> hashSet = new HashSet<>();
for(int i = startIndex; i < nums.length; i++){
if(hashSet.contains(nums[i])){
continue;
}
hashSet.add(nums[i]);
path.add(nums[i]);
backtracking(nums,i+1);
path.removeLast();
}
}
}
```
Python