O-Precedence
O-Precedence
全部文章
分类
Saveの秋招自救指南(2)
来牛客吐槽吧,别去其他地方了。(7)
题解(20)
归档
标签
去牛客网
登录
/
注册
Save の blog
望我们信念生根,但灵魂自在,往后人生道路宽广,途经的每一个夏天,都草木葱茏,满目生机。
全部文章
(共20篇)
题解 | #子集-ii#
来个莫名AC的(bushi) import java.util.*; public class Solution { ArrayList<ArrayList<Integer>> res = new ArrayList<>(); ArrayList&...
题解
2021-09-10
0
454
题解 | #集合的所有子集#
来个短的 import java.util.*; public class Solution { ArrayList<ArrayList<Integer>> res = new ArrayList<>(); ArrayList<Integer...
题解
2021-09-10
0
392
题解 | #链表内指定区间反转#
import java.util.*; public class Solution { public ListNode reverseBetween (ListNode head, int m, int n) { // write code here if(h...
题解
2021-09-10
0
447
题解 | #删除有序链表中重复的元素-I#
import java.util.*; public class Solution { public ListNode deleteDuplicates (ListNode head) { if(head==null||head.next==null) ...
题解
2021-09-10
0
364
题解 | #删除有序链表中重复的元素-II#
😔😔😔 import java.util.*; public class Solution { public ListNode deleteDuplicates (ListNode head) { if(head==null||head.next==null) ...
题解
2021-09-10
0
445
题解 | #划分链表#
import java.util.*; public class Solution { public ListNode partition (ListNode head, int x) { if(head==null) return null; ...
题解
2021-09-10
0
404
题解 | #合并两个有序的数组#
public class Solution { public void merge(int A[], int m, int B[], int n) { int[] C = new int[m]; for(int i = 0 ; i < m ; i++)...
题解
2021-09-10
0
341
题解 | #恢复二叉搜索树#
class Solution { private TreeNode t1,t2,pre; public void recoverTree(TreeNode root) { inOrder(root); int temp = t1.val; ...
题解
2021-09-09
0
423
题解 | #判断二叉搜索树#
左子树上界是root.val,下界是Integer.MIN_VALUE;右子树上界是Integer.MAX_VALU,下界是root.val; public class Solution { /** * * @param root TreeNode类 * @...
题解
2021-09-09
0
574
题解 | #不同的二叉搜索树 ii#
判断函数终止时,null值加入到res中很关键。 选定某个根节点时,递归得到他所有可能的左子树和右子树。 同一根节点下的左子树和右子树可以任意组合。 得到最后的res。 public class Solution { public ArrayList<TreeNode> gen...
题解
2021-09-09
0
508
首页
上一页
1
2
下一页
末页