- 25. K 个一组翻转链表">25. K 个一组翻转链表
- 4. 寻找两个正序数组的中位数">4. 寻找两个正序数组的中位数
- 56. 合并区间">56. 合并区间
- 121. 买卖股票的最佳时机">121. 买卖股票的最佳时机
- 122. 买卖股票的最佳时机 II">122. 买卖股票的最佳时机 II
- 123. 买卖股票的最佳时机 III">123. 买卖股票的最佳时机 III
- 188. 买卖股票的最佳时机 IV">188. 买卖股票的最佳时机 IV
- 309. 最佳买卖股票时机含冷冻期">309. 最佳买卖股票时机含冷冻期
- 54. 螺旋矩阵">54. 螺旋矩阵
- 124. 二叉树中的最大路径和">124. 二叉树中的最大路径和
- 93. 复原 IP 地址">93. 复原 IP 地址
- 22. 括号生成">22. 括号生成
- 143. 重排链表">143. 重排链表
25. K 个一组翻转链表
public class Solution {
public ListNode reverseKGroup (ListNode head, int k) {
ListNode dummy = new ListNode(-1);
dummy.next = head;
ListNode start = head; //每一段开始的节点
ListNode pre = dummy; //每一段之前的节点
while(start!=null) {
int len = 1;
ListNode end = start; // end是当前段的最后一个节点
while(len<k) {
len++;
if(end.next!=null)
end = end.next;
else
return dummy.next;
}
// 现在end 指向当前段的最后一个节点
ListNode nextStart = null; // 指向下一个区间的最后一个
if(end!=null)
nextStart = end.next;
reverse(start,end,pre); // 反转[start,end],并将pre指向新头节点
while(pre.next!=null) {
pre = pre.next; // pre移到当前段的末尾
}
// 连接新段
pre.next = nextStart;
start = nextStart; // 重新开始反转
}
return dummy.next;
}
// 反转[start,end]中间的所有节点,并将其挂在pre的next上
public void reverse(ListNode start,ListNode end,ListNode pre) {
end.next = null;
ListNode now = start.next;
start.next = null;
while(now!=null) {
ListNode nex = now.next;
now.next = pre.next;
pre.next = now;
now = nex;
}
}
}
4. 寻找两个正序数组的中位数
class Solution {
public double findMedianSortedArrays(int[] nums1, int[] nums2) {
int m = nums1.length; // num1的长度
int n = nums2.length; // num2的长度
if(m==0) { // 如果其中一个没有数据,只需要返回就可以了
if((n&1)==0) { // 第二个是偶数时候,需要找到中间的两个取平均
return (nums2[n/2]+nums2[n/2-1])/2.0;
} else { // 第二个是奇数长度,
return nums2[n/2];
}
} else if(n==0) {
if((m&1)==0) {
return (nums1[m/2]+nums1[m/2-1])/2.0;
} else {
return nums1[m/2];
}
} else if(n==1 && m==1) {
return (nums1[0]+nums2[0])/2.0;
}
// 两个都是有效数组,需要进行判断
int len = m+n;
if((len&1)==0) { // 总长度是偶数,需要取两个值
int k1 = len/2;
int k2 = k1+1;
int a = find(nums1,nums2,k1);
int b = find(nums1,nums2,k2);
return (a+b)/2.0;
} else{ // 总长度是奇数,只需要取一个值就可以了
int k = len / 2 + 1;
return find(nums1,nums2,k)/1.0;
}
}
int find(int[] nums1,int[] nums2,int k){
int l1 = 0; // num1的起始位置
int l2 = 0;
int r1 = nums1.length-1; // num1的结束位置
int r2 = nums2.length-1;
while(l1<=r1 && l2 <=r2) {
int len1 = k/2-1; // num1的有效长度
int len2 = k/2-1;
if(l1+len1>r1){ // 如果超出边界,按到最右边的长度进行处理
len1 = r1-l1;
}
if(l2+len2>r2) {
len2 = r2-l2;
}
// System.out.println("l1="+l1);
// System.out.println("len1="+len1);
// System.out.println("l2="+l2);
// System.out.println("len2="+len2);
// 如果num2的位置k比较小,那么更新num2的起始位置
if(nums1[l1+len1]>nums2[l2+len2]) {
k-=(len2+1); // 删除nnum2的以判断的长度
l2 = l2+len2+1;
if(l2>r2) { // num2如果已经没有数据了
return nums1[l1+k-1];
}
} else {
k-=(len1+1);
l1 = l1+len1+1;
if(l1>r1) {
return nums2[l2+k-1];
}
}
if(k==1){ // 如果最后两个数组都是长度大与等于1的
return Math.min(nums1[l1],nums2[l2]);
}
}
return -1;
}
}
56. 合并区间
开始时间从小到大排序
class Solution {
public int[][] merge(int[][] intervals) {
// 进行排序,按照开始时间从大到小并且结束时间同样
Arrays.sort(intervals,new Comparator<int[]>(){
public int compare(int[] v1,int[] v2) {
if(v1[0]==v2[0])
return v1[1]-v2[1];
return v1[0]-v2[0];
}
});
List<int[]> res = new ArrayList();
int len = intervals.length;
if(len==0)
return new int[][]{};
res.add(intervals[0]);
int index = 0;
for(int i = 1 ; i < len;i++) {
// 如果后面的开始时间小于前面的结束时间,可以合并
if(intervals[i][0] <= res.get(index)[1]) {
res.get(index)[1] = Math.max(intervals[i][1],res.get(index)[1]); // 注意[1,4],[2,3] 时候,前面的可能包含后面的情况,所以更新时候需要判断下
}else {
res.add(intervals[i]);
index++;
}
}
int[][] result = new int[res.size()][2];
for(int i = 0; i <= index;i++) {
result[i] = res.get(i);
}
return result;
}
}
121. 买卖股票的最佳时机
class Solution {
public int maxProfit(int[] prices) {
int len = prices.length;
if(len<=1)
return 0;
int min = prices[0];
int max = 0;
for(int i = 1; i < len;i++) {
max = Math.max(max,prices[i]-min);
min = Math.min(min,prices[i]);
}
return max;
}
}
122. 买卖股票的最佳时机 II
class Solution {
public int maxProfit(int[] prices) {
int res = 0;
for(int i = 1 ; i < prices.length;i++) {
res += (prices[i]>prices[i-1]?prices[i]-prices[i-1]:0);
}
return res;
}
}
123. 买卖股票的最佳时机 III
class Solution {
public int maxProfit(int[] prices) {
int len = prices.length;
if(len<=1)
return 0;
int buy1 = -prices[0];
int sell1 = 0;
int buy2 = -prices[0];
int sell2 = 0;
for(int i = 1; i < len; i++) {
buy1 = Math.max(-prices[i],buy1);
sell1 = Math.max(buy1 + prices[i],sell1);
buy2 = Math.max(sell1 - prices[i],buy2);
sell2 = Math.max(buy2 + prices[i],sell2);
}
return Math.max(sell1,sell2);
}
}
188. 买卖股票的最佳时机 IV
class Solution {
public int maxProfit(int k, int[] prices) {
int len = prices.length;
if(len==0 || k==0)
return 0;
int[] buy = new int[k];
int[] sell = new int[k];
Arrays.fill(buy,-prices[0]); // 第一天无论买多少次,buy都是-pricre[0],sell都是0
for(int i = 1; i < len ; i++) {
// 第i天进行第一次买卖
buy[0] = Math.max(buy[0],-prices[i]);
sell[0] = Math.max(sell[0],prices[i]+buy[0]);
// 第i天进行第j次买卖
for(int j = 1 ; j < k ; j++) {
buy[j] = Math.max(buy[j],sell[j-1]-prices[i]);
sell[j] = Math.max(sell[j],prices[i]+buy[j]);
}
}
// System.out.println(Arrays.toString(sell));
return sell[k-1];
}
}
注意:sell[i][j] = Math.max(sell[i-1][j],buy[i-1][j-1]+prices[i]);
来说,也可以看作sell[i][j] = Math.max(sell[i-1][j],buy[i][j-1]+prices[i]);
这样是将i天完成了j-1次交易并又买入了股票,并在当天卖出,这样可以来状态压缩了。
309. 最佳买卖股票时机含冷冻期
用 f[i]f[i] 表示第 i 天结束之后的「累计最大收益」
由于我们最多只能同时买入(持有)一支股票,并且卖出股票后有冷冻期的限制,因此我们会有三种不同的状态:
- 持有一只股票,对应的累计最大收益是f[i][0]
- 不持有股票,并且处于冷静期,对应的最大收益是f[i][1]
- 不持有股票,不处于冷静期,对应的最大收益是f[i][2]
这里的「处于冷冻期」指的是在第 i 天结束之后的状态。也就是说:如果第 ii 天结束之后处于冷冻期,那么第 i+1 天无法买入股票。
**
以上三种状态 :
- 持有一只股票,对应的累计最大收益是f[i][0]
- 昨天买了股票,今天没有卖出
f[i-1][0]
- 今天不是冷静期,并且买了股票
f[i-1][2]-price[i]
- 昨天买了股票,今天没有卖出
- 不持有股票,并且处于冷静期,对应的最大收益是f[i][1]
- 今天卖了股票
f[i-1][0] + price[i]
- 今天卖了股票
- 不持有股票,不处于冷静期,对应的最大收益是f[i][2]
- 昨天没有股票,并且是冷冻期f[i-1][2]
- 昨天没有股票,并且不是冷冻期f[i-1][1]
class Solution {
public int maxProfit(int[] prices) {
int len = prices.length;
if(len<=1)
return 0;
int[][] f = new int[len][3];
f[0][0] = -prices[0];
for(int i = 1; i < len; i++) {
f[i][0] = Math.max(f[i-1][0],f[i-1][2]-prices[i]);
f[i][1] = f[i-1][0]+prices[i];
f[i][2] = Math.max(f[i-1][1],f[i-1][2]);
}
return Math.max(f[len-1][2],f[len-1][1]);
}
}
54. 螺旋矩阵
每次遍历一圈,一圈结束时候指向开始的时候[up,left],这个时候需要让i+1,j+1指向新的开始(例如上图第一圈开始的是0,0;第二圈开始的就是1,1了)
class Solution {
public List<Integer> spiralOrder(int[][] matrix) {
List<Integer> res = new ArrayList();
int n = matrix.length;
if(n<=0) {
return res;
}
int m = matrix[0].length;
if(m<=0) {
return res;
}
int up = 0;
int down = n-1;
int left = 0;
int right = m-1;
int i = 0;
int j = 0;
while(true) {
// 第一行
while(j<=right){
res.add(matrix[i][j]);
j++;
}
// 第一行最后j指向了right+1,所以需要j--,使其恢复
j--;
// 只有一行的时候,break就行了
if(up>=down){
break;
}
// 进入[up,right]的下一行[up+1,right]
i++;
while(i<=down){
res.add(matrix[i][j]);
i++;
}
i--; // i这个时候=down+1,需要--指向down
if(left>=right){
break;
}
j--;
while(j>=left){
res.add(matrix[i][j]);
j--;
}
j++;
i--;
while(i>up){
res.add(matrix[i][j]);
i--;
}
i++;j++;
up++;left++;
down--;right--;
if(up>down || left>right){
break;
}
}
return res;
}
}
124. 二叉树中的最大路径和
空节点的最大贡献值等于 00。
- 非空节点的最大贡献值等于节点值与其子节点中的最大贡献值之和(对于叶节点而言,最大贡献值等于节点值)。
对于二叉树中的一个节点,该节点的最大路径和取决于该节点的值与该节点的左右子节点的最大贡献值,如果子节点的最大贡献值为正,则计入该节点的最大路径和,否则不计入该节点的最大路径和。 ```java class Solution { int maxSum = Integer.MIN_VALUE;
public int maxPathSum(TreeNode root) {
maxGain(root);
return maxSum;
}
public int maxGain(TreeNode node) {
if (node == null) {
return 0;
}
// 递归计算左右子节点的最大贡献值
// 只有在最大贡献值大于 0 时,才会选取对应子节点
int leftGain = Math.max(maxGain(node.left), 0);
int rightGain = Math.max(maxGain(node.right), 0);
// 节点的最大路径和取决于该节点的值与该节点的左右子节点的最大贡献值
int priceNewpath = node.val + leftGain + rightGain;
// 更新答案
maxSum = Math.max(maxSum, priceNewpath);
// 返回节点的最大贡献值
return node.val + Math.max(leftGain, rightGain);
} }
<a name="Dv5mF"></a>
#### [105. 从前序与中序遍历序列构造二叉树](https://leetcode-cn.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal/)
![image.png](https://cdn.nlark.com/yuque/0/2021/png/8429887/1616395033968-5ae9194a-3491-4d4a-82e7-1d09f468bfd4.png#align=left&display=inline&height=529&margin=%5Bobject%20Object%5D&name=image.png&originHeight=529&originWidth=558&size=23568&status=done&style=none&width=558)
```java
class Solution {
public TreeNode buildTree(int[] preorder, int[] inorder) {
return build(preorder,inorder,0,preorder.length-1,0,inorder.length-1);
}
public TreeNode build(int[] preorder,int[] inorder,int pl,int pr,int il,int ir) {
if(pl==pr) {
return new TreeNode(preorder[pl]);
}
if(pl>pr)
return null;
int now = preorder[pl];
int pos = 0;
int index = il;
while(index<=ir) {
if(inorder[index]==now) {
pos = index;
break;
}
index++;
}
TreeNode root = new TreeNode(now);
root.left = build(preorder,inorder,pl+1,pl+pos-il,il,pos-1);
root.right = build(preorder,inorder,pl+pos-il+1,pr,pos+1,ir);
return root;
}
}
93. 复原 IP 地址
class Solution {
public List<String> restoreIpAddresses(String s) {
List<String> res = new ArrayList();
restore(s,res,new StringBuilder(),0,s.length(),0);
return res;
}
public void restore(String s,List<String> res,StringBuilder ip,int start,int len,int count) {
// start已经到达末尾,或者已经有了三个点
if(start==len || count==4) {
// 不满足其中一个要求,失败
if(start==len && count==4)
res.add(ip.toString());
return;
}
// 不能含有前导 0,所以如果第一个数字是0,分成两个情况
int num = s.charAt(start)-'0';
if(num==0) {
// 当前整数只能为0
ip.append('0');
if(count!=3) {
ip.append('.');
}
restore(s,res,ip,start+1,len,count+1);
if(count!=3) {
ip.deleteCharAt(ip.length()-1);
}
ip.deleteCharAt(ip.length()-1);
return;
} else {
num = 0;
// 当前整数可以是1位,2位,3位的
for(int i = start;i < len;i++) {
num = num * 10 + (s.charAt(i)-'0');
// 符合条件
if(num>0 && num<=255) {
ip.append(num+"");
if(count!=3) {
ip.append('.');
}
restore(s,res,ip,i+1,len,count+1);
if(count!=3) {
ip.deleteCharAt(ip.length()-1);
}
int length = i-start+1;
// 根据刚才加入数字的长度删除对应长度个
while(length!=0) {
ip.deleteCharAt(ip.length()-1);
length--;
}
} else {
return;
}
}
}
}
}
22. 括号生成
- n代表可以有n个左括号,n个右括号
必须先有左括号再加右括号
class Solution {
public List<String> generateParenthesis(int n) {
List<String> list = new ArrayList();
generate(list,new StringBuilder(),0,0,n);
return list;
}
// max = 最多左括号的数量
public void generate(List<String> list,StringBuilder builder,int open,int close,int max) {
if(builder.length()==2*max){
list.add(builder.toString());
return;
}
// 可以加左括号
if(open<max) {
builder.append("(");
generate(list,builder,open+1,close,max);
builder.deleteCharAt(builder.length()-1);
}
// 右括号比左括号少,可以加右括号
if(close<open) {
builder.append(")");
generate(list,builder,open,close+1,max);
builder.deleteCharAt(builder.length()-1);
}
}
}
143. 重排链表
找到中点,reverse后半段
将逆转后的后半段间隔插入到前半段```
class Solution {
public void reorderList(ListNode head) {
int len = 0;
ListNode now = head;
while(now!=null) {
now = now.next;
len++;
}
if(len==1)
return;
len = (len+1)/2;
now = head;
while(len!=1) {
len--;
now = now.next;
}
ListNode now2 = now.next; // 找到后半段
now.next = null;
now = head;
// 反转后半段
ListNode dummy = new ListNode(-1);
dummy.next = now2;
now2 = reverse(dummy);
// 间隔插入
while(now2!=null) {
ListNode nex = now.next;
ListNode nex2 = now2.next;
now.next = now2;
now2.next = nex;
now = nex;
now2 = nex2;
}
}
ListNode reverse(ListNode dummy) {
ListNode now = dummy.next.next;
dummy.next.next = null;
while(now!=null) {
ListNode t = now.next;
now.next = dummy.next;
dummy.next = now;
now = t;
}
return dummy.next;
}
}