diff --git a/README.md b/README.md
index e1f5502..a008d61 100644
--- a/README.md
+++ b/README.md
@@ -1,39 +1,34 @@
# LeetCode-Java
-[-blue.svg)](https://github.com/996icu/996.ICU/blob/master/LICENSE)
-[](https://996.icu)
-
## 说明
-- leetcode练习,坚持每天一道
+- leetcode练习,坚持每天一道,目前已完成275道
- 解题语言是Java
- 每道题都是可编译运行的
- 每道题有自己的方法和他人优秀解法
- 每道题会尽量分析一下解题步骤和复杂度
- 欢迎star、fork、交流,一起互勉
-- 微信号:pp_hdsny(备注leetcode)
+- 微信号:pp_hdsny(寻扣友,备注leetcode)
- 网址:https://leetcode-cn.com/
-## 20190408-20190415待解题目列表
+## 待解题目列表
-共9道题目,4道Easy,5道Medium
+剑指offer系列-持续多周,每周7题
-- [x] [12. 整数转罗马数字](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_12_intToRoman.java)
-- [x] [13. 罗马数字转整数](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_13_romanToInt.java)
-- [x] [16. 最接近的三数之和](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_16_threeSumClosest.java)
-- [x] [17. 电话号码的字母组合](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_17_letterCombinations.java)
-- [x] [18. 四数之和](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_18_fourSum.java)
-- [ ] [20. 有效的括号](https://leetcode-cn.com/problems/valid-parentheses)
-- [ ] [27. 移除元素](https://leetcode-cn.com/problems/remove-element)
-- [ ] [28. 实现strStr()](https://leetcode-cn.com/problems/implement-strstr)
-- [ ] [29. 两数相除](https://leetcode-cn.com/problems/divide-two-integers)
+- [x] [剑指 Offer 16. 数值的整数次方](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/offer/_16_myPow.java)
+- [x] [剑指 Offer 17. 打印从1到最大的n位数](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/offer/_17_printNumbers.java)
+- [x] [剑指 Offer 18. 删除链表的节点](https://leetcode-cn.com/problems/shan-chu-lian-biao-de-jie-dian-lcof/)
+- [ ] [剑指 Offer 19. 正则表达式匹配](https://leetcode-cn.com/problems/zheng-ze-biao-da-shi-pi-pei-lcof/)
+- [ ] [剑指 Offer 20. 表示数值的字符串](https://leetcode-cn.com/problems/biao-shi-shu-zhi-de-zi-fu-chuan-lcof/)
+- [ ] [剑指 Offer 21. 调整数组顺序使奇数位于偶数前面](https://leetcode-cn.com/problems/diao-zheng-shu-zu-shun-xu-shi-qi-shu-wei-yu-ou-shu-qian-mian-lcof/)
+- [ ] [剑指 Offer 22. 链表中倒数第k个节点](https://leetcode-cn.com/problems/lian-biao-zhong-dao-shu-di-kge-jie-dian-lcof/)
-额外添加几道关联题目
+LCP
-- [x] [454. 四数相加 II](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_454_fourSumCount.java)
+- [x] [LCP 06. 拿硬币](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/LCP/_6_minCount.java)
## 已解题目
> 20190404# leetcode目前已有题目1020道,免费852道
-### 题目类型(更新中)
+### 题目类型(更新中...)
- [数组](
+ * 有一个同学在学习分式。他需要将一个连分数化成最简分数,你能帮助他吗? + *
+ * https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2019/09/09/fraction_example_1.jpg + *
+ * 连分数是形如上图的分式。在本题中,所有系数都是大于等于0的整数。 + *
+ * + *
+ * 输入的cont代表连分数的系数(cont[0]代表上图的a0,以此类推)。返回一个长度为2的数组[n, m],使得连分数的值等于n / m,且n, m最大公约数为1。 + *
+ * + *
+ * 示例 1: + *
+ * 输入:cont = [3, 2, 0, 2] + * 输出:[13, 4] + * 解释:原连分数等价于3 + (1 / (2 + (1 / (0 + 1 / 2))))。注意[26, 8], [-13, -4]都不是正确答案。 + * 示例 2: + *
+ * 输入:cont = [0, 0, 3] + * 输出:[3, 1] + * 解释:如果答案是整数,令分母为1即可。 + * 限制: + *
+ * cont[i] >= 0 + * 1 <= cont的长度 <= 10 + * cont最后一个元素不等于0 + * 答案的n, m的取值都能被32位int整型存下(即不超过2 ^ 31 - 1)。 + *
+ * 来源:力扣(LeetCode) + * 链接:https://leetcode-cn.com/problems/deep-dark-fraction + * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。 + */ +public class _2_fraction { + + public static void main(String[] args) { + _2_fraction fraction = new _2_fraction(); + Util.printArray(fraction.fraction(new int[]{3, 2, 0, 2})); + Util.printArray(fraction.fraction(new int[]{0, 0, 3})); + Util.printArray(fraction.fraction(new int[]{3})); + } + + /** + * 解题思路: + * 对整个题目比划比划你会发现,整个解题的过程就是个循环求解分式,为了更好的写代码,逆向求解 + * 1、定义一个length为2的数组result,第一位是分子,第二位是分母 + * 2、逆向遍历数组 + * 3、对于第一位,result[0]=1,result[1]=item + * 4、分式对下一位相加,直接分母*该值加到分子上,并将分子分母求导数 + * 5、由于是逆向求解,还需要对最终结果进行求导数 + * + * @param cont + * @return + */ + public int[] fraction(int[] cont) { + //1 + int[] result = new int[2]; + //2 + for (int i = cont.length - 1; i >= 0; i--) { + int item = cont[i]; + if (result[0] == 0 && result[1] == 0) { + //3 + result[0] = 1; + result[1] = item; + } else { + //4 + result[0] += result[1] * item; + swap(result); + } + } + //5 + swap(result); + return result; + } + + private void swap(int[] arr) { + int temp = arr[0]; + arr[0] = arr[1]; + arr[1] = temp; + } +} diff --git a/src/pp/arithmetic/LCP/_3_robot.java b/src/pp/arithmetic/LCP/_3_robot.java new file mode 100644 index 0000000..152cac0 --- /dev/null +++ b/src/pp/arithmetic/LCP/_3_robot.java @@ -0,0 +1,165 @@ +package pp.arithmetic.LCP; + +import java.util.HashMap; +import java.util.HashSet; +import java.util.Map; +import java.util.Set; + +/** + * Created by wangpeng on 2019-10-09. + * LCP 3. 机器人大冒险 + *
+ * 力扣团队买了一个可编程机器人,机器人初始位置在原点(0, 0)。小伙伴事先给机器人输入一串指令command,机器人就会无限循环这条指令的步骤进行移动。指令有两种: + *
+ * U: 向y轴正方向移动一格 + * R: 向x轴正方向移动一格。 + * 不幸的是,在 xy 平面上还有一些障碍物,他们的坐标用obstacles表示。机器人一旦碰到障碍物就会被损毁。 + *
+ * 给定终点坐标(x, y),返回机器人能否完好地到达终点。如果能,返回true;否则返回false。 + *
+ * + *
+ * 示例 1: + *
+ * 输入:command = "URR", obstacles = [], x = 3, y = 2 + * 输出:true + * 解释:U(0, 1) -> R(1, 1) -> R(2, 1) -> U(2, 2) -> R(3, 2)。 + * 示例 2: + *
+ * 输入:command = "URR", obstacles = [[2, 2]], x = 3, y = 2 + * 输出:false + * 解释:机器人在到达终点前会碰到(2, 2)的障碍物。 + * 示例 3: + *
+ * 输入:command = "URR", obstacles = [[4, 2]], x = 3, y = 2 + * 输出:true + * 解释:到达终点后,再碰到障碍物也不影响返回结果。 + * + *
+ * 限制: + *
+ * 2 <= command的长度 <= 1000 + * command由U,R构成,且至少有一个U,至少有一个R + * 0 <= x <= 1e9, 0 <= y <= 1e9 + * 0 <= obstacles的长度 <= 1000 + * obstacles[i]不为原点或者终点 + *
+ * 来源:力扣(LeetCode) + * 链接:https://leetcode-cn.com/problems/programmable-robot + * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。 + */ +public class _3_robot { + + public static void main(String[] args) { + _3_robot robot = new _3_robot(); + System.out.println(robot.robot("URR", new int[][]{}, 3, 2)); + System.out.println(robot.robot("URR", new int[][]{{2, 2}}, 3, 2)); + System.out.println(robot.robot("URR", new int[][]{{4, 2}}, 3, 2)); + System.out.println(robot.robot("URRURRR", new int[][]{{7, 7}, {0, 5}, {2, 7}, {8, 6}, {8, 7}, {6, 5}, {4, 4}, {0, 3}, {3, 6}}, 4915, 1966)); + //优化解题 + System.out.println(robot.robot2("URR", new int[][]{}, 3, 2)); + System.out.println(robot.robot2("URR", new int[][]{{2, 2}}, 3, 2)); + System.out.println(robot.robot2("URR", new int[][]{{4, 2}}, 3, 2)); + System.out.println(robot.robot2("URRURRR", new int[][]{{7, 7}, {0, 5}, {2, 7}, {8, 6}, {8, 7}, {6, 5}, {4, 4}, {0, 3}, {3, 6}}, 4915, 1966)); + } + + /** + * 解题思路: + * 简单直接能出结果,但是提交超时,主要耗时在障碍物的循环判断上,当障碍物太多了就比较耗时了 + * 比如这个case:https://leetcode-cn.com/submissions/detail/32424313/testcase/ + *
+ * 优化求解:{@link _3_robot#robot2(String, int[][], int, int)} + * + * @param command + * @param obstacles + * @param x + * @param y + * @return + */ + public boolean robot(String command, int[][] obstacles, int x, int y) { + int index = 0; + int length = command.length(); + int SX = 0, SY = 0; + while (true) { + char c = command.charAt(index % length); + if (c == 'U') { + SY++; + } else if (c == 'R') { + SX++; + } else { + break; + } + if (SX == x && SY == y) { + return true; + } + //不考虑内存的话,可以考虑用map保存障碍物位置,本题提交不过x,y太大 + if (isInObstacles(SX, SY, obstacles) || SX > x || SY > y) { + break; + } + index++; + } + + return false; + } + + private boolean isInObstacles(int x, int y, int[][] obstacles) { + if (obstacles.length == 0) return false; + for (int i = 0; i < obstacles.length; i++) { + if (x == obstacles[i][0] && y == obstacles[i][1]) { + return true; + } + } + return false; + } + + /** + * 解题思路: + * 1、鉴于指令是不断走循环的,先算出一个循环内横向走的坐标xx和纵向走的坐标yy,后续的可以通过规则落到第一圈的坐标上 + * 2、利用map将一个循环走的坐标保存下来==>xx+"_"+yy,true + * 3、计算走到目标坐标需要的循环次数,映射到第一圈中是否包含该坐标 + * 4、同理,循环障碍物,看映射到第一圈中是否包含该坐标 + * + * 映射规则:x ==> x - circle * xx + *
+ * 执行用时 : 3 ms, 在所有 Java 提交中击败了69.76%的用户
+ * 内存消耗 :36 MB, 在所有 Java 提交中击败了100.00%的用户
+ *
+ * @param command
+ * @param obstacles
+ * @param x
+ * @param y
+ * @return
+ */
+ public boolean robot2(String command, int[][] obstacles, int x, int y) {
+ int xx = 0, yy = 0;
+ Map
+ * 你有一块棋盘,棋盘上有一些格子已经坏掉了。你还有无穷块大小为1 * 2的多米诺骨牌,你想把这些骨牌不重叠地覆盖在完好的格子上,请找出你最多能在棋盘上放多少块骨牌?这些骨牌可以横着或者竖着放。
+ *
+ *
+ *
+ * 输入:n, m代表棋盘的大小;broken是一个b * 2的二维数组,其中每个元素代表棋盘上每一个坏掉的格子的位置。
+ *
+ * 输出:一个整数,代表最多能在棋盘上放的骨牌数。
+ *
+ *
+ *
+ * 示例 1:
+ *
+ * 输入:n = 2, m = 3, broken = [[1, 0], [1, 1]]
+ * 输出:2
+ * 解释:我们最多可以放两块骨牌:[[0, 0], [0, 1]]以及[[0, 2], [1, 2]]。(见下图)
+ *
+ *
+ * 示例 2:
+ *
+ * 输入:n = 3, m = 3, broken = []
+ * 输出:4
+ * 解释:下 图是其中一种可行的摆放方式
+ *
+ *
+ * 限制:
+ *
+ * 1 <= n <= 8
+ * 1 <= m <= 8
+ * 0 <= b <= n * m
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/broken-board-dominoes
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _4_domino {
+
+ public static void main(String[] args) {
+ _4_domino domino = new _4_domino();
+ System.out.println(domino.domino(2, 3, new int[][]{{1, 0}, {1, 1}}));
+ System.out.println(domino.domino(3, 3, new int[][]{}));
+ System.out.println(domino.domino(8, 8, new int[][]{
+ {1, 0}, {2, 5}, {3, 1}, {3, 2}, {3, 4}, {4, 0}, {4, 3}, {4, 6}, {4, 7}, {5, 3}, {5, 5}, {5, 6}, {6, 3}, {7, 2}, {7, 7}
+ }));
+ }
+
+ int ret = 0; //摆放计数
+ int max = 0; //最大值计数
+
+ /**
+ * 解题思路:
+ * 1、构建棋盘,将棋盘上正常的为0,坏了的位置为2,摆放了骨牌的为1
+ * 2、对于一个位置和骨牌有三种组合:横着放、竖着放、不放,如需计算正确的值需要所有的情况都计算到,所以回溯实现
+ *
+ * 执行耗时不是很好,但是自己写出来的好理解
+ * 执行用时 :1297 ms, 在所有 java 提交中击败了12.90%的用户
+ * 内存消耗 :35.6 MB, 在所有 java 提交中击败了100.00%的用户
+ *
+ * @param n
+ * @param m
+ * @param broken
+ * @return
+ */
+ public int domino(int n, int m, int[][] broken) {
+ ret = 0;
+ max = 0;
+ //构造棋盘
+ int[][] map = new int[n][m];
+ for (int i = 0; i < broken.length; i++) {
+ int[] item = broken[i];
+ map[item[0]][item[1]] = 2;
+ }
+ dfs(map, 0, 0);
+
+ return max;
+ }
+
+ /**
+ * 循环的过程是横向一行行逐格摆放,如到一行的末尾无法摆放则换行,如超过行数则计算摆放的最大个数
+ *
+ * @param map
+ * @param row
+ * @param col
+ */
+ private void dfs(int[][] map, int row, int col) {
+ if (row >= map.length) { //如超过行数则计算摆放的最大个数
+ max = Math.max(max, ret);
+ return;
+ }
+ if (col >= map[row].length) {//如到一行的末尾无法摆放则换行
+ dfs(map, row + 1, 0);
+ return;
+ }
+ if (map[row][col] > 0) {//遇坏格子则跳过
+ dfs(map, row, col + 1);
+ return;
+ }
+ //试着横着放
+ boolean h = false;
+ if (col < map[row].length - 1 && map[row][col + 1] == 0) {
+ h = true;
+ map[row][col]++;
+ map[row][col + 1]++;
+ ret++;
+ dfs(map, row, col + 2);
+ //横向状态重置
+ ret--;
+ map[row][col]--;
+ map[row][col + 1]--;
+ }
+ //试着竖着放
+ boolean v = false;
+ if (row < map.length - 1 && map[row + 1][col] == 0) {
+ v = true;
+ map[row][col]++;
+ map[row + 1][col]++;
+ ret++;
+ dfs(map, row, col + 1);
+ //竖向状态重置
+ ret--;
+ map[row][col]--;
+ map[row + 1][col]--;
+ }
+ //如横着和竖着都不行,试着不放,跳2格
+ if (!h && !v) {
+ dfs(map, row, col + 2);
+ }
+ }
+}
diff --git a/src/pp/arithmetic/LCP/_5_bonus.java b/src/pp/arithmetic/LCP/_5_bonus.java
new file mode 100644
index 0000000..00f19ae
--- /dev/null
+++ b/src/pp/arithmetic/LCP/_5_bonus.java
@@ -0,0 +1,151 @@
+package pp.arithmetic.LCP;
+
+import pp.arithmetic.Util;
+
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * Created by wangpeng on 2019-10-11.
+ *
+ * 力扣决定给一个刷题团队发LeetCoin作为奖励。同时,为了监控给大家发了多少LeetCoin,力扣有时候也会进行查询。
+ *
+ *
+ *
+ * 该刷题团队的管理模式可以用一棵树表示:
+ *
+ * 团队只有一个负责人,编号为1。除了该负责人外,每个人有且仅有一个领导(负责人没有领导);
+ * 不存在循环管理的情况,如A管理B,B管理C,C管理A。
+ *
+ *
+ * 力扣想进行的操作有以下三种:
+ *
+ * 给团队的一个成员(也可以是负责人)发一定数量的LeetCoin;
+ * 给团队的一个成员(也可以是负责人),以及他/她管理的所有人(即他/她的下属、他/她下属的下属,……),发一定数量的LeetCoin;
+ * 查询某一个成员(也可以是负责人),以及他/她管理的所有人被发到的LeetCoin之和。
+ *
+ *
+ * 输入:
+ *
+ * N表示团队成员的个数(编号为1~N,负责人为1);
+ * leadership是大小为(N - 1) * 2的二维数组,其中每个元素[a, b]代表b是a的下属;
+ * operations是一个长度为Q的二维数组,代表以时间排序的操作,格式如下:
+ * operations[i][0] = 1: 代表第一种操作,operations[i][1]代表成员的编号,operations[i][2]代表LeetCoin的数量;
+ * operations[i][0] = 2: 代表第二种操作,operations[i][1]代表成员的编号,operations[i][2]代表LeetCoin的数量;
+ * operations[i][0] = 3: 代表第三种操作,operations[i][1]代表成员的编号;
+ * 输出:
+ *
+ * 返回一个数组,数组里是每次查询的返回值(发LeetCoin的操作不需要任何返回值)。由于发的LeetCoin很多,请把每次查询的结果模1e9+7 (1000000007)。
+ *
+ *
+ *
+ * 示例 1:
+ *
+ * 输入:N = 6, leadership = [[1, 2], [1, 6], [2, 3], [2, 5], [1, 4]], operations = [[1, 1, 500], [2, 2, 50], [3, 1], [2, 6, 15], [3, 1]]
+ * 输出:[650, 665]
+ * 解释:团队的管理关系见下图。
+ * 第一次查询时,每个成员得到的LeetCoin的数量分别为(按编号顺序):500, 50, 50, 0, 50, 0;
+ * 第二次查询时,每个成员得到的LeetCoin的数量分别为(按编号顺序):500, 50, 50, 0, 50, 15.
+ *
+ *
+ *
+ * 力扣决定给一个刷题团队发LeetCoin作为奖励。同时,为了监控给大家发了多少LeetCoin,力扣有时候也会进行查询。
+ *
+ *
+ *
+ * 该刷题团队的管理模式可以用一棵树表示:
+ *
+ * 团队只有一个负责人,编号为1。除了该负责人外,每个人有且仅有一个领导(负责人没有领导);
+ * 不存在循环管理的情况,如A管理B,B管理C,C管理A。
+ *
+ *
+ * 力扣想进行的操作有以下三种:
+ *
+ * 给团队的一个成员(也可以是负责人)发一定数量的LeetCoin;
+ * 给团队的一个成员(也可以是负责人),以及他/她管理的所有人(即他/她的下属、他/她下属的下属,……),发一定数量的LeetCoin;
+ * 查询某一个成员(也可以是负责人),以及他/她管理的所有人被发到的LeetCoin之和。
+ *
+ *
+ * 输入:
+ *
+ * N表示团队成员的个数(编号为1~N,负责人为1);
+ * leadership是大小为(N - 1) * 2的二维数组,其中每个元素[a, b]代表b是a的下属;
+ * operations是一个长度为Q的二维数组,代表以时间排序的操作,格式如下:
+ * operations[i][0] = 1: 代表第一种操作,operations[i][1]代表成员的编号,operations[i][2]代表LeetCoin的数量;
+ * operations[i][0] = 2: 代表第二种操作,operations[i][1]代表成员的编号,operations[i][2]代表LeetCoin的数量;
+ * operations[i][0] = 3: 代表第三种操作,operations[i][1]代表成员的编号;
+ * 输出:
+ *
+ * 返回一个数组,数组里是每次查询的返回值(发LeetCoin的操作不需要任何返回值)。由于发的LeetCoin很多,请把每次查询的结果模1e9+7 (1000000007)。
+ *
+ *
+ *
+ * 示例 1:
+ *
+ * 输入:N = 6, leadership = [[1, 2], [1, 6], [2, 3], [2, 5], [1, 4]], operations = [[1, 1, 500], [2, 2, 50], [3, 1], [2, 6, 15], [3, 1]]
+ * 输出:[650, 665]
+ * 解释:团队的管理关系见下图。
+ * 第一次查询时,每个成员得到的LeetCoin的数量分别为(按编号顺序):500, 50, 50, 0, 50, 0;
+ * 第二次查询时,每个成员得到的LeetCoin的数量分别为(按编号顺序):500, 50, 50, 0, 50, 15.
+ *
+ *
+ *
+ * 限制:
+ *
+ * 1 <= N <= 50000
+ * 1 <= Q <= 50000
+ * operations[i][0] != 3 时,1 <= operations[i][2] <= 5000
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/coin-bonus
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _5_bonus_2 {
+
+ public static void main(String[] args) {
+ _5_bonus_2 bonus = new _5_bonus_2();
+ Util.printArray(bonus.bonus(6, new int[][]{{1, 2}, {1, 6}, {2, 3}, {2, 5}, {1, 4}}, new int[][]{{1, 1, 500}, {2, 2, 50}, {3, 1}, {2, 6, 15}, {3, 1}}));
+
+ int[][] l = new int[][]{{1, 283}, {1, 52}, {1, 273}, {1, 217}, {1, 136}, {1, 211}, {1, 179}, {283, 293}, {283, 292}, {283, 227}, {283, 54}, {283, 404}, {283, 378}, {283, 243}, {283, 270}, {283, 46}, {283, 300}, {52, 376}, {52, 267}, {52, 71}, {52, 406}, {273, 9}, {273, 148}, {273, 51}, {273, 102}, {217, 110}, {217, 370}, {217, 125}, {217, 357}, {136, 360}, {136, 260}, {136, 196}, {136, 228}, {136, 103}, {136, 347}, {136, 384}, {211, 25}, {179, 3}, {179, 140}, {179, 56}, {179, 263}, {179, 231}, {293, 326}, {293, 121}, {293, 116}, {293, 21}, {293, 262}, {293, 369}, {293, 183}, {292, 75}, {292, 303}, {292, 330}, {227, 397}, {227, 35}, {227, 279}, {227, 345}, {227, 139}, {227, 391}, {227, 266}, {54, 16}, {404, 214}, {404, 184}, {404, 68}, {404, 27}, {378, 192}, {378, 87}, {378, 39}, {378, 386}, {378, 259}, {243, 94}, {243, 112}, {243, 99}, {243, 182}, {243, 29}, {243, 197}, {270, 23}, {270, 181}, {270, 297}, {46, 351}, {46, 362}, {46, 22}, {46, 61}, {300, 408}, {376, 332}, {267, 349}, {267, 80}, {267, 367}, {267, 226}, {71, 72}, {71, 389}, {71, 163}, {71, 100}, {71, 107}, {71, 92}, {71, 85}, {406, 353}, {406, 199}, {406, 257}, {406, 242}, {406, 305}, {406, 159}, {406, 77}, {9, 309}, {148, 401}, {148, 65}, {148, 218}, {148, 342}, {148, 331}, {148, 339}, {51, 290}, {51, 150}, {51, 60}, {51, 137}, {51, 160}, {51, 252}, {51, 364}, {51, 335}, {51, 343}, {51, 304}, {102, 180}, {102, 138}, {110, 74}, {110, 171}, {110, 390}, {110, 352}, {110, 37}, {370, 377}, {370, 358}, {370, 36}, {370, 272}, {125, 66}, {125, 301}, {125, 67}, {125, 239}, {125, 175}, {357, 12}, {357, 106}, {357, 282}, {357, 240}, {360, 144}, {360, 393}, {360, 317}, {360, 195}, {260, 264}, {260, 13}, {260, 281}, {260, 400}, {260, 212}, {260, 365}, {260, 402}, {260, 63}, {260, 255}, {196, 193}, {196, 338}, {228, 399}, {228, 202}, {228, 313}, {228, 392}, {228, 208}, {228, 38}, {228, 31}, {103, 203}, {103, 320}, {103, 254}, {103, 275}, {103, 34}, {347, 149}, {347, 222}, {347, 114}, {347, 157}, {347, 325}, {347, 6}, {347, 154}, {347, 250}, {347, 350}, {384, 93}, {384, 123}, {384, 374}, {384, 50}, {25, 285}, {25, 20}, {25, 288}, {25, 251}, {25, 185}, {25, 289}, {3, 241}, {3, 258}, {3, 43}, {140, 58}, {140, 329}, {140, 45}, {140, 287}, {140, 132}, {140, 170}, {140, 355}, {140, 311}, {140, 47}, {140, 168}, {56, 321}, {56, 388}, {56, 32}, {56, 302}, {56, 190}, {56, 48}, {56, 11}, {263, 96}, {263, 30}, {263, 24}, {263, 26}, {231, 229}, {231, 164}, {231, 128}, {231, 295}, {231, 230}, {231, 396}, {231, 81}, {231, 244}, {231, 276}, {231, 141}, {326, 134}, {326, 161}, {326, 97}, {326, 286}, {326, 88}, {326, 221}, {326, 405}, {326, 8}, {326, 156}, {121, 113}, {121, 15}, {121, 348}, {121, 104}, {121, 398}, {121, 91}, {121, 40}, {121, 64}, {121, 318}, {121, 111}, {116, 271}, {21, 83}, {21, 55}, {262, 368}, {262, 336}, {262, 249}, {262, 129}, {262, 145}, {262, 337}, {262, 234}, {262, 79}, {369, 90}, {369, 122}, {369, 395}, {369, 108}, {369, 341}, {369, 334}, {369, 316}, {369, 69}, {369, 278}, {183, 151}, {183, 315}, {183, 17}, {183, 178}, {183, 274}, {183, 269}, {75, 200}, {75, 131}, {75, 126}, {75, 19}, {75, 359}, {75, 70}, {75, 133}, {75, 117}, {75, 33}, {75, 206}, {303, 223}, {303, 324}, {303, 101}, {303, 314}, {303, 135}, {303, 146}, {330, 191}, {330, 194}, {330, 253}, {330, 307}, {330, 225}, {330, 299}, {330, 382}, {330, 82}, {397, 167}, {397, 2}, {397, 308}, {397, 246}, {397, 245}, {397, 265}, {35, 261}, {35, 328}, {35, 224}, {35, 296}, {35, 340}, {35, 186}, {35, 280}, {279, 210}, {279, 4}, {279, 268}, {279, 173}, {279, 284}, {279, 247}, {279, 119}, {279, 89}, {279, 205}, {345, 10}, {345, 124}, {345, 366}, {345, 7}, {345, 98}, {345, 209}, {345, 394}, {345, 385}, {345, 188}, {345, 166}, {139, 153}, {139, 327}, {139, 127}, {139, 155}, {139, 312}, {391, 235}, {391, 76}, {391, 381}, {266, 219}, {266, 5}, {266, 361}, {266, 120}, {266, 344}, {266, 105}, {266, 371}, {266, 165}, {266, 323}, {16, 59}, {16, 237}, {16, 291}, {16, 109}, {214, 383}, {214, 142}, {214, 220}, {214, 215}, {184, 78}, {184, 238}, {184, 57}, {68, 204}, {27, 356}, {27, 322}, {27, 62}, {27, 162}, {27, 407}, {27, 14}, {27, 152}, {27, 86}, {27, 84}, {27, 95}, {192, 42}, {87, 115}, {87, 403}, {87, 118}, {87, 189}, {87, 28}, {87, 277}, {87, 147}, {87, 49}, {39, 73}, {386, 213}, {386, 387}, {386, 306}, {386, 346}, {386, 143}, {386, 363}, {386, 41}, {386, 373}, {259, 216}, {259, 372}, {259, 169}, {259, 248}, {259, 354}, {259, 53}, {259, 44}, {259, 380}, {259, 256}, {94, 333}, {94, 172}, {94, 298}, {94, 18}, {94, 232}, {94, 158}, {94, 207}, {94, 236}, {112, 310}, {112, 130}, {112, 319}, {112, 174}, {99, 177}, {99, 233}, {99, 187}, {99, 198}, {99, 375}, {99, 201}, {99, 176}, {99, 294}, {99, 379}};
+ int[][] o = new int[][]{
+ {1, 201, 26}, {1, 114, 22}, {2, 366, 42}, {2, 116, 22}, {1, 239, 5}, {1, 11, 38}, {1, 50, 19}, {2, 159, 45}, {1, 242, 12}, {1, 338, 44}, {1, 221, 33}, {2, 268, 21}, {3, 186}, {1, 171, 46}, {2, 41, 15}, {2, 84, 1}, {1, 210, 30}, {2, 109, 28}, {2, 164, 16}, {2, 40, 8}, {1, 129, 30}, {3, 268}, {2, 163, 16}, {2, 345, 44}, {1, 91, 13}, {2, 16, 46}, {2, 304, 15}, {2, 387, 8}, {2, 296, 13}, {1, 293, 1}, {2, 362, 15}, {2, 177, 37}, {1, 11, 50}, {1, 372, 34}, {3, 1}, {3, 268}, {1, 339, 43}, {2, 353, 45}, {2, 121, 19}, {3, 1}, {1, 125, 8}, {1, 160, 44}, {1, 66, 43}, {1, 98, 2}, {3, 52}, {2, 108, 41}, {3, 245}, {1, 66, 45}, {3, 52}, {1, 132, 49}, {2, 135, 32}, {3, 402}, {3, 1}, {2, 234, 23}, {2, 80, 50}, {3, 52}, {3, 283}, {2, 233, 26}, {2, 269, 27}, {1, 388, 45}, {2, 139, 40}, {2, 118, 17}, {2, 329, 37}, {2, 200, 27}, {3, 1}, {1, 9, 23}, {2, 367, 32}, {3, 52}, {2, 314, 23}, {1, 50, 2}, {3, 283}, {1, 320, 25}, {3, 154}, {1, 270, 48}, {1, 213, 30}, {2, 297, 12}, {2, 404, 20}, {3, 283}, {2, 291, 31}, {3, 52}, {1, 278, 43}, {1, 244, 45}, {1, 96, 3}, {3, 1}, {1, 339, 49}, {1, 131, 26}, {2, 75, 9}, {1, 80, 39}, {3, 264}, {1, 69, 7}, {1, 394, 37}, {2, 17, 16}, {1, 290, 44}, {1, 95, 35}, {3, 52}, {2, 361, 8}, {1, 195, 18}, {1, 63, 15}, {3, 52}, {1, 309, 8}, {2, 368, 28}, {3, 1}, {3, 1}, {1, 311, 48}, {3, 125}, {1, 382, 23}, {2, 225, 23}, {2, 309, 24}, {3, 253}, {1, 66, 18}, {2, 137, 26}, {3, 269}, {3, 283}, {3, 283}, {1, 346, 10}, {1, 340, 19}, {1, 105, 13}, {1, 303, 25}, {1, 376, 30}, {3, 52}, {1, 275, 36}, {1, 9, 3}, {1, 190, 36}, {1, 312, 10}, {3, 366}, {1, 248, 24}, {1, 360, 41}, {3, 1}, {3, 1}, {2, 367, 27}, {1, 209, 19}, {2, 255, 3}, {2, 135, 42}, {1, 57, 16}, {2, 121, 8}, {3, 221}, {1, 112, 47}, {2, 42, 23}, {2, 87, 12}, {1, 293, 27}, {1, 309, 28}, {1, 33, 7}, {1, 196, 39}, {3, 314}, {1, 164, 12}, {2, 2, 31}, {3, 52}, {1, 80, 40}, {3, 52}, {3, 283}, {3, 1}, {2, 212, 16}, {3, 1}, {3, 52}, {2, 50, 43}, {3, 1}, {1, 14, 42}, {3, 283}, {2, 404, 32}, {3, 283}, {2, 44, 11}, {2, 70, 18}, {2, 147, 32}, {2, 260, 28}, {1, 144, 9}, {3, 52}, {3, 1}, {3, 283}, {3, 283}, {1, 329, 20}, {1, 45, 13}, {3, 52}, {1, 340, 33}, {2, 14, 11}, {1, 288, 31}, {1, 262, 46}, {1, 145, 42}, {2, 303, 24}, {1, 392, 3}, {1, 295, 24}, {2, 213, 5}, {1, 368, 13}, {1, 228, 14}, {1, 375, 47}, {3, 283}, {3, 161}, {3, 1}, {1, 64, 46}, {2, 102, 5}, {1, 251, 21}, {3, 298}, {1, 223, 24}, {2, 297, 13}, {1, 293, 19}, {2, 99, 26}, {2, 395, 21}, {3, 52}, {3, 52}, {3, 52}, {2, 221, 50}, {3, 1}, {2, 116, 41}, {2, 246, 24}, {1, 233, 39}, {3, 1}, {2, 318, 5}, {2, 63, 43}, {1, 142, 46}, {2, 367, 38}, {2, 193, 47}, {1, 34, 27}, {1, 302, 25}, {3, 1}, {1, 238, 13}, {2, 372, 19}, {3, 311}, {1, 3, 14}, {2, 200, 34}, {3, 52}, {2, 160, 40}, {2, 242, 30}, {1, 273, 27}, {1, 375, 9}, {3, 52}, {1, 66, 15}, {1, 103, 8}, {3, 52}, {1, 400, 48}, {2, 327, 46}, {1, 379, 25}, {2, 164, 4}, {2, 358, 4}, {2, 356, 1}, {2, 175, 7}, {2, 261, 37}, {3, 283}, {1, 155, 7}, {2, 214, 9}, {1, 154, 42}, {1, 12, 22}, {3, 52}, {1, 273, 8}, {3, 52}, {3, 52}, {3, 52}, {1, 364, 38}, {2, 199, 30}, {3, 283}, {1, 70, 18}, {2, 275, 41}, {2, 373, 3}, {2, 260, 2}, {2, 31, 11}, {2, 326, 1}, {2, 244, 34}, {3, 323}, {2, 209, 27}, {1, 163, 5}, {1, 131, 45}, {1, 3, 44}, {2, 311, 34}, {1, 8, 35}, {1, 78, 49}, {2, 342, 32}, {2, 231, 46}, {2, 124, 23}, {1, 85, 30}, {2, 274, 16}, {1, 28, 39}, {3, 283}, {1, 156, 28}, {3, 54}, {1, 100, 1}, {1, 43, 9}, {3, 1}, {2, 85, 3}, {3, 149}, {3, 1}, {3, 187}, {2, 107, 12}, {1, 374, 9}, {3, 52}, {3, 52}, {3, 283}, {3, 1}, {3, 283}, {2, 365, 10}, {1, 89, 27}, {3, 52}, {2, 145, 44}, {1, 220, 33}, {2, 116, 8}, {1, 94, 26}, {3, 283}, {3, 52}, {3, 371}, {2, 185, 29}, {1, 93, 37}, {2, 203, 36}, {2, 181, 46}, {1, 313, 14}, {3, 283}, {2, 191, 34}, {3, 283}, {1, 206, 6}, {3, 235}, {1, 56, 31}, {2, 361, 11}, {1, 244, 27}, {2, 241, 12}, {1, 214, 41}, {2, 358, 20}, {1, 340, 37}, {2, 126, 18}, {2, 101, 44}, {1, 23, 46}, {2, 323, 24}, {3, 52}, {1, 301, 12}, {2, 224, 43}, {1, 24, 26}, {2, 326, 50}, {3, 52}, {3, 52}, {3, 52}, {2, 177, 37}, {1, 240, 41}, {1, 320, 12}, {3, 239}, {2, 369, 31}, {1, 372, 19}, {2, 179, 23}, {2, 180, 23}, {1, 170, 10}, {1, 252, 1}, {2, 42, 39}, {2, 124, 13}, {1, 263, 19}, {1, 244, 1}, {1, 84, 37}, {1, 187, 8}, {3, 283}, {2, 175, 43}, {1, 203, 38}, {3, 1}, {2, 19, 29}, {1, 301, 19}, {3, 41}, {3, 46}, {2, 26, 21}, {1, 325, 7}, {1, 343, 47}, {2, 81, 49}, {2, 395, 29}, {3, 52}, {3, 283}, {2, 114, 47}, {2, 6, 38}, {1, 219, 37}, {2, 154, 23}, {1, 188, 6}, {1, 116, 25}, {2, 385, 7}, {1, 289, 3}, {2, 295, 2}, {3, 1}, {3, 1}, {3, 52}, {3, 283}, {3, 52}, {2, 140, 2}, {3, 1}, {1, 248, 40}, {1, 379, 18}, {1, 224, 7}, {2, 63, 24}, {3, 283}, {2, 207, 13}, {1, 333, 6}, {2, 332, 20}, {3, 222}, {2, 52, 14}, {1, 158, 4}, {3, 52}, {1, 271, 35}, {1, 75, 10}, {2, 322, 11}, {2, 315, 3}, {2, 26, 7}, {1, 10, 11}, {2, 401, 50}, {1, 9, 18}, {3, 1}, {1, 28, 39}, {1, 185, 3}, {3, 52}, {1, 162, 20}, {1, 247, 5}, {3, 52}, {1, 308, 9}, {2, 103, 33}, {3, 1}, {3, 344}, {3, 283}, {2, 124, 29}, {3, 1}, {2, 121, 23}, {1, 122, 23}, {1, 381, 37}, {2, 185, 35}, {2, 285, 5}, {2, 190, 25}, {2, 122, 25}, {1, 293, 38}, {1, 75, 41}, {2, 138, 15}, {1, 202, 9}, {1, 121, 42}, {3, 52}, {2, 83, 23}, {3, 325}, {3, 1}, {2, 350, 41}, {2, 337, 50}, {2, 198, 19}, {1, 221, 32}, {1, 309, 4}, {3, 1}, {1, 310, 44}, {2, 22, 34}, {1, 247, 29}, {2, 187, 22}, {3, 283}, {1, 366, 16}, {3, 52}, {3, 52}, {1, 8, 36}, {2, 83, 18}, {1, 134, 36}, {2, 291, 27}, {2, 352, 16}, {2, 281, 27}, {1, 397, 15}, {2, 215, 40}, {2, 190, 4}, {2, 98, 17}, {3, 331}, {2, 21, 32}, {1, 56, 10}, {1, 388, 42}, {1, 225, 3}, {1, 225, 42}, {1, 185, 18}, {3, 347}, {1, 184, 23}, {3, 52}, {1, 137, 30}, {1, 187, 39}, {1, 249, 46}, {1, 137, 16}, {1, 160, 7}, {2, 148, 11}, {1, 384, 13}, {2, 389, 27}, {2, 308, 16}, {2, 384, 39}, {2, 235, 1}, {2, 117, 6}, {2, 222, 11}, {3, 1}, {3, 52}, {1, 249, 5}, {2, 321, 28}, {2, 365, 14}, {2, 2, 34}, {3, 362}, {3, 52}, {2, 93, 25}, {3, 1}, {2, 359, 10}, {3, 52}, {3, 1}, {2, 408, 4}, {1, 193, 45}, {3, 52}, {1, 97, 11}, {1, 75, 2}, {3, 1}, {3, 52}, {3, 283}, {3, 273}, {3, 105}, {1, 95, 14}, {3, 1}, {3, 100}, {2, 176, 33}, {2, 121, 26}, {3, 52}, {1, 331, 21}, {2, 83, 14}};
+ Util.printArray(bonus.bonus(408 ,l,o));
+ }
+
+ private int mod = 1000000007;
+
+ /**
+ * 解题思路:
+ * 1、构建树及依赖关系
+ * 2、按操作赋值
+ * 3、保存取值结果
+ *
+ * 比较{@link _5_bonus}优化:、
+ * 发团队币,全部发给团队负责人,负责人统一保存
+ * 1、为了让取币总和更快,在发币的时候就保存了团队币总和
+ * 2、由于发币团队成员都是一致的,所以负责人中可以保存下属的同样的币(每个人还可以有自己特有的币)
+ *
+ * 执行用时 :47 ms , 在所有 Java 提交中击败了93.62% 的用户
+ * 内存消耗 :89.6 MB, 在所有 Java 提交中击败了100.00%的用户
+ *
+ * @param n
+ * @param leadership
+ * @param operations
+ * @return
+ */
+ public int[] bonus(int n, int[][] leadership, int[][] operations) {
+ List
+ * 桌上有 n 堆力扣币,每堆的数量保存在数组 coins 中。我们每次可以选择任意一堆,拿走其中的一枚或者两枚,求拿完所有力扣币的最少次数。
+ *
+ * 示例 1:
+ *
+ * 输入:[4,2,1]
+ *
+ * 输出:4
+ *
+ * 解释:第一堆力扣币最少需要拿 2 次,第二堆最少需要拿 1 次,第三堆最少需要拿 1 次,总共 4 次即可拿完。
+ *
+ * 示例 2:
+ *
+ * 输入:[2,3,10]
+ *
+ * 输出:8
+ *
+ * 限制:
+ *
+ * 1 <= n <= 4
+ * 1 <= coins[i] <= 10
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/na-ying-bi
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _6_minCount {
+
+ public static void main(String[] args) {
+ _6_minCount minCount = new _6_minCount();
+ System.out.println(minCount.minCount(new int[]{4, 2, 1}));
+ System.out.println(minCount.minCount(new int[]{2, 3, 10}));
+
+ }
+
+ /**
+ * 解题思路:
+ * 需要最少次数,利用贪心的思路,每次尽可能的多拿(也就是2个)
+ *
+ * @param coins
+ * @return
+ */
+ public int minCount(int[] coins) {
+ if (coins == null) return 0;
+ int retVal = 0;
+ for (int i = 0; i < coins.length; i++) {
+ int coin = coins[i];
+ if (coin % 2 == 0) {
+ retVal += coin / 2;
+ } else {
+ retVal += coin / 2 + 1;
+ }
+ }
+
+ return retVal;
+ }
+}
diff --git a/src/pp/arithmetic/Util.java b/src/pp/arithmetic/Util.java
index 9999552..7e38661 100644
--- a/src/pp/arithmetic/Util.java
+++ b/src/pp/arithmetic/Util.java
@@ -4,7 +4,9 @@
import pp.arithmetic.model.ListNode;
import pp.arithmetic.model.TreeNode;
+import java.util.ArrayDeque;
import java.util.List;
+import java.util.Queue;
import java.util.Random;
/**
@@ -102,6 +104,35 @@ public static TreeNode generateTreeNode() {
return root;
}
+ public static TreeNode generateTreeNode(Integer[] nodes) {
+ if (nodes == null || nodes.length == 0 || nodes[0] == null) return null;
+ TreeNode root = new TreeNode(nodes[0]);
+ Queue
+ * 给定一个二叉树,检查它是否是镜像对称的。
+ *
+ * 例如,二叉树 [1,2,2,3,4,4,3] 是对称的。
+ *
+ * 1
+ * / \
+ * 2 2
+ * / \ / \
+ * 3 4 4 3
+ * 但是下面这个 [1,2,2,null,3,null,3] 则不是镜像对称的:
+ *
+ * 1
+ * / \
+ * 2 2
+ * \ \
+ * 3 3
+ * 说明:
+ *
+ * 如果你可以运用递归和迭代两种方法解决这个问题,会很加分。
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/symmetric-tree
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _101_isSymmetric {
+
+ public static void main(String[] args) {
+ _101_isSymmetric isSymmetric = new _101_isSymmetric();
+ //UT1
+ TreeNode treeNode = new TreeNode(1);
+ treeNode.left = new TreeNode(2);
+ treeNode.right = new TreeNode(2);
+ treeNode.left.left = new TreeNode(3);
+ treeNode.left.right = new TreeNode(4);
+ treeNode.right.left = new TreeNode(4);
+ treeNode.right.right = new TreeNode(3);
+ System.out.println(isSymmetric.isSymmetric(treeNode));
+ System.out.println(isSymmetric.isSymmetric2(treeNode));
+ //UT2
+ TreeNode treeNode1 = new TreeNode(1);
+ treeNode1.left = new TreeNode(2);
+ treeNode1.right = new TreeNode(2);
+ treeNode1.left.right = new TreeNode(3);
+ treeNode1.right.right = new TreeNode(3);
+ System.out.println(isSymmetric.isSymmetric(treeNode1));
+ System.out.println(isSymmetric.isSymmetric2(treeNode1));
+ }
+
+ /**
+ * 解题思路:
+ * 树的两种方法:递归和迭代
+ *
+ * 递归:
+ * 1.左子树是镜像对称
+ * 2.右子树是镜像对称
+ * 3.自己是镜像对称
+ * 选择递归入参:左子树,右子树,条件:左子树value==右子树value,
+ * 需要注意因为是镜像,所以递归的时候左右子树取相对的left和right
+ *
+ * 迭代解法:{@link _101_isSymmetric#isSymmetric2(TreeNode)}
+ *
+ * @param root
+ * @return
+ */
+ public boolean isSymmetric(TreeNode root) {
+ if (root == null) return true;
+ return isEqual(root.left, root.right);
+ }
+
+ private boolean isEqual(TreeNode left, TreeNode right) {
+ if (left == null && right == null) return true;
+ if (left == null || right == null) return false;
+ //左
+ boolean leftEqual = isEqual(left.left, right.right);
+ //右
+ boolean rightEqual = isEqual(left.right, right.left);
+ //自己
+ boolean selfEqual = left.val == right.val;
+ return leftEqual && rightEqual && selfEqual;
+ }
+
+ /**
+ * 迭代:
+ * 通过栈保存遍历结果
+ *
+ * @param root
+ * @return
+ */
+ public boolean isSymmetric2(TreeNode root) {
+ if (root == null) return true;
+ Stack
+ * 爱丽丝和鲍勃一起玩游戏,他们轮流行动。爱丽丝先手开局。
+ *
+ * 最初,黑板上有一个数字 N 。在每个玩家的回合,玩家需要执行以下操作:
+ *
+ * 选出任一 x,满足 0 < x < N 且 N % x == 0 。
+ * 用 N - x 替换黑板上的数字 N 。
+ * 如果玩家无法执行这些操作,就会输掉游戏。
+ *
+ * 只有在爱丽丝在游戏中取得胜利时才返回 True,否则返回 false。假设两个玩家都以最佳状态参与游戏。
+ *
+ *
+ *
+ * 示例 1:
+ *
+ * 输入:2
+ * 输出:true
+ * 解释:爱丽丝选择 1,鲍勃无法进行操作。
+ * 示例 2:
+ *
+ * 输入:3
+ * 输出:false
+ * 解释:爱丽丝选择 1,鲍勃也选择 1,然后爱丽丝无法进行操作。
+ *
+ *
+ * 提示:
+ *
+ * 1 <= N <= 1000
+ *
+ * @see divisor-game
+ */
+public class _1025_divisorGame {
+ public static void main(String[] args) {
+ _1025_divisorGame divisorGame = new _1025_divisorGame();
+ System.out.println(divisorGame.divisorGame(3));
+ System.out.println(divisorGame.divisorGame(4));
+ }
+
+ /**
+ * 解题思路:
+ * 爱丽丝可能有多种结局么?论证发现只要N给定了,结局也就定了,偶数爱丽丝必胜
+ * 但是我们为了练习动态规划(DP),还是从动态规划的角度来思考下
+ * 动态规划解题四部曲,可供参考
+ *
+ * - 确认原问题与子问题=>原问题:对于N来说爱丽丝是否能赢,子问题:对于i来说爱丽丝是否会赢
+ * - 确认状态=>
+ * - 确认边界状态的值=>dp[1]=false;dp[2]=true
+ * - 确定状态转移方程=>dp[i]=!dp[i-1]
+ *
+ * 没看明白题目,没意思
+ *
+ * @param N
+ * @return
+ */
+ public boolean divisorGame(int N) {
+ //把偶数留给自己, 把奇数留给对手, 最后剩2的时候选择1即可赢得比赛.
+ //若己方拿到的是偶数, 每次选择 1, 就可以把奇数留给对手, 己方赢.
+ //若己方拿到的是奇数, 一定不能选择偶数, 留给对手的一定是偶数, 对手可以留给你奇数, 对手赢.
+ //动态规划,初始值。
+ if (N == 1) return false;
+
+ boolean[] dp = new boolean[N + 1];
+ dp[1] = false;
+
+ for (int i = 2; i <= N; i++) {
+ dp[i] = !dp[i - 1];
+ }
+ return dp[N];
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_102_levelOrder.java b/src/pp/arithmetic/leetcode/_102_levelOrder.java
new file mode 100644
index 0000000..db889e1
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_102_levelOrder.java
@@ -0,0 +1,120 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+import pp.arithmetic.model.TreeNode;
+
+import java.util.ArrayDeque;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Queue;
+
+/**
+ * Created by wangpeng on 2019-07-27.
+ * 102. 二叉树的层次遍历
+ *
+ * 给定一个二叉树,返回其按层次遍历的节点值。 (即逐层地,从左到右访问所有节点)。
+ *
+ * 例如:
+ * 给定二叉树: [3,9,20,null,null,15,7],
+ *
+ * 3
+ * / \
+ * 9 20
+ * / \
+ * 15 7
+ * 返回其层次遍历结果:
+ *
+ * [
+ * [3],
+ * [9,20],
+ * [15,7]
+ * ]
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/binary-tree-level-order-traversal
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _102_levelOrder {
+
+ public static void main(String[] args) {
+ _102_levelOrder levelOrder = new _102_levelOrder();
+ List
+ * 有一堆石头,每块石头的重量都是正整数。
+ *
+ * 每一回合,从中选出两块最重的石头,然后将它们一起粉碎。假设石头的重量分别为 x 和 y,且 x <= y。那么粉碎的可能结果如下:
+ *
+ * 如果 x == y,那么两块石头都会被完全粉碎;
+ * 如果 x != y,那么重量为 x 的石头将会完全粉碎,而重量为 y 的石头新重量为 y-x。
+ * 最后,最多只会剩下一块石头。返回此石头的重量。如果没有石头剩下,就返回 0。
+ *
+ *
+ *
+ * 提示:
+ *
+ * 1 <= stones.length <= 30
+ * 1 <= stones[i] <= 1000
+ *
+ * @see last-stone-weight
+ */
+public class _1046_lastStoneWeight {
+
+ public static void main(String[] args) {
+ _1046_lastStoneWeight lastStoneWeight = new _1046_lastStoneWeight();
+ System.out.println(lastStoneWeight.lastStoneWeight(new int[]{4, 3, 4, 3, 2}));
+ System.out.println(lastStoneWeight.lastStoneWeight(new int[]{2, 7, 4, 1, 8, 1}));
+ System.out.println(lastStoneWeight.lastStoneWeight(new int[]{3, 7, 2}));
+ System.out.println(lastStoneWeight.lastStoneWeight(new int[]{3, 7, 8}));
+ }
+
+ /**
+ * 解题思路:
+ * 1.先将数组转换成有序list
+ * 2.从list中取2个最大的数进行粉碎,得到结果>0则插入list,使其还有序
+ * 3.重复步骤2直到剩余数<=1
+ *
+ * 难点:如何构建有序数并对其进行插入排序
+ * 1.先快排(O(nlogn)),顺序遍历插入(O(n)) ==>执行用时 : 5 ms, 在Last Stone Weight的Java提交中击败了43.43% 的用户
+ * 2.先快排(O(nlogn)),二分插入排序(O(logn))==>执行用时 : 5 ms, 在Last Stone Weight的Java提交中击败了43.43% 的用户
+ * 测试用例数据量并不是很大,两种解题耗时相差不大
+ *
+ * @param stones
+ * @return
+ */
+ public int lastStoneWeight(int[] stones) {
+ List
+ * 有一堆石头,每块石头的重量都是正整数。
+ *
+ * 每一回合,从中选出任意两块石头,然后将它们一起粉碎。假设石头的重量分别为 x 和 y,且 x <= y。那么粉碎的可能结果如下:
+ *
+ * 如果 x == y,那么两块石头都会被完全粉碎;
+ * 如果 x != y,那么重量为 x 的石头将会完全粉碎,而重量为 y 的石头新重量为 y-x。
+ * 最后,最多只会剩下一块石头。返回此石头最小的可能重量。如果没有石头剩下,就返回 0。
+ *
+ *
+ *
+ * 示例:
+ *
+ * 输入:[2,7,4,1,8,1]
+ * 输出:1
+ * 解释:
+ * 组合 2 和 4,得到 2,所以数组转化为 [2,7,1,8,1],
+ * 组合 7 和 8,得到 1,所以数组转化为 [2,1,1,1],
+ * 组合 2 和 1,得到 1,所以数组转化为 [1,1,1],
+ * 组合 1 和 1,得到 0,所以数组转化为 [1],这就是最优值。
+ *
+ *
+ * 提示:
+ *
+ * 1 <= stones.length <= 30
+ * 1 <= stones[i] <= 1000
+ *
+ * @see last-stone-weight-ii
+ */
+public class _1049_lastStoneWeightII {
+ public static void main(String[] args) {
+ _1049_lastStoneWeightII lastStoneWeightII = new _1049_lastStoneWeightII();
+// System.out.println(lastStoneWeightII.lastStoneWeightII(new int[]{2, 7, 4, 8, 1, 1}));
+// System.out.println(lastStoneWeightII.lastStoneWeightII(new int[]{6, 2, 2, 6, 5, 7, 7}));
+ System.out.println(lastStoneWeightII.lastStoneWeightII(new int[]{31, 26, 33, 21, 40}));
+ }
+
+ /**
+ * 解题思路:
+ * 1.因为需要数组相减得到最少值,所以可以分成两个一样大小的数组
+ * 2.往数组中尽可能装满,转换为背包问题
+ *
+ * @param stones
+ * @return
+ */
+ public int lastStoneWeightII(int[] stones) {
+ /* 由于石头拿走还能放回去,因此可以简单地把所有石头看作两堆
+ * 假设总重量为 sum, 则问题转化为背包问题:如何使两堆石头总重量接近 sum / 2
+ */
+ int len = stones.length;
+ /* 获取石头总重量 */
+ int sum = 0;
+ for (int i : stones) {
+ sum += i;
+ }
+ /* 定义 dp[i] 重量上限为 i 时背包所能装载的最大石头重量 */
+ int maxCapacity = sum / 2;
+ int[] dp = new int[maxCapacity + 1];
+ for (int i = 0; i < len; i++) {
+ int curStone = stones[i];
+ for (int j = maxCapacity; j >= curStone; j--) {
+ dp[j] = Math.max(dp[j], dp[j - curStone] + curStone);
+ }
+ }
+ return sum - 2 * dp[maxCapacity];
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_1051_heightChecker.java b/src/pp/arithmetic/leetcode/_1051_heightChecker.java
new file mode 100644
index 0000000..0e6a790
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_1051_heightChecker.java
@@ -0,0 +1,53 @@
+package pp.arithmetic.leetcode;
+
+import java.util.Arrays;
+
+/**
+ * Created by wangpeng on 2019-06-05.
+ * 1051. 高度检查器
+ *
+ * 学校在拍年度纪念照时,一般要求学生按照 非递减 的高度顺序排列。
+ *
+ * 请你返回至少有多少个学生没有站在正确位置数量。该人数指的是:能让所有学生以 非递减 高度排列的必要移动人数。
+ *
+ * 示例:
+ * 输入:[1,1,4,2,1,3]
+ * 输出:3
+ * 解释:
+ * 高度为 4、3 和最后一个 1 的学生,没有站在正确的位置。
+ *
+ * 1 <= heights.length <= 100
+ * 1 <= heights[i] <= 100
+ *
+ * @see height-checker
+ */
+public class _1051_heightChecker {
+ public static void main(String[] args) {
+ _1051_heightChecker heightChecker = new _1051_heightChecker();
+ System.out.println(heightChecker.heightChecker(new int[]{1, 1, 4, 2, 1, 3}));
+ }
+
+ /**
+ * 解题思路:
+ * 1.对数组进行排序
+ * 2.循环遍历原始数组和排序数组,找到差异
+ *
+ * 解题时间复杂度(O(nLogn+n)),不知道是否能提交通过,easy的题看来不能考虑太多
+ *
+ * @param heights
+ * @return
+ */
+ public int heightChecker(int[] heights) {
+ int[] sortHeights = new int[heights.length];
+ System.arraycopy(heights, 0, sortHeights, 0, heights.length);
+ Arrays.sort(sortHeights);
+ int diffCount = 0;
+ for (int i = 0; i < heights.length; i++) {
+ if (heights[i] != sortHeights[i]) {
+ diffCount++;
+ }
+ }
+
+ return diffCount;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_1052_maxSatisfied.java b/src/pp/arithmetic/leetcode/_1052_maxSatisfied.java
new file mode 100644
index 0000000..99c44c4
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_1052_maxSatisfied.java
@@ -0,0 +1,76 @@
+package pp.arithmetic.leetcode;
+
+/**
+ * Created by wangpeng on 2019-06-06.
+ * 1052. 爱生气的书店老板
+ *
+ * 今天,书店老板有一家店打算试营业 customers.length 分钟。每分钟都有一些顾客(customers[i])会进入书店,所有这些顾客都会在那一分钟结束后离开。
+ *
+ * 在某些时候,书店老板会生气。 如果书店老板在第 i 分钟生气,那么 grumpy[i] = 1,否则 grumpy[i] = 0。 当书店老板生气时,那一分钟的顾客就会不满意,不生气则他们是满意的。
+ *
+ * 书店老板知道一个秘密技巧,能抑制自己的情绪,可以让自己连续 X 分钟不生气,但却只能使用一次。
+ *
+ * 请你返回这一天营业下来,最多有多少客户能够感到满意的数量。
+ *
+ *
+ * 示例:
+ *
+ * 输入:customers = [1,0,1,2,1,1,7,5], grumpy = [0,1,0,1,0,1,0,1], X = 3
+ * 输出:16
+ * 解释:
+ * 书店老板在最后 3 分钟保持冷静。
+ * 感到满意的最大客户数量 = 1 + 1 + 1 + 1 + 7 + 5 = 16.
+ *
+ *
+ * 提示:
+ *
+ * 1 <= X <= customers.length == grumpy.length <= 20000
+ * 0 <= customers[i] <= 1000
+ * 0 <= grumpy[i] <= 1
+ *
+ * @see grumpy-bookstore-owner
+ */
+public class _1052_maxSatisfied {
+ public static void main(String[] args) {
+ _1052_maxSatisfied maxSatisfied = new _1052_maxSatisfied();
+ System.out.println(maxSatisfied.maxSatisfied(new int[]{1, 0, 1, 2, 1, 1, 7, 5}, new int[]{0, 1, 0, 1, 0, 1, 0, 1}, 3));
+ System.out.println(maxSatisfied.maxSatisfied(new int[]{1}, new int[]{0}, 1));
+ System.out.println(maxSatisfied.maxSatisfied(new int[]{4, 10, 10}, new int[]{1, 1, 0}, 2));
+ }
+
+ /**
+ * 解题思路(动态规划+窗口):
+ * 1.定义两个数组dp和zoreDp
+ * 2.dp保存窗口长度为X的满意度,防止重复计算
+ * 3.zoreDp保存不生气时候的满意总和数
+ * 4.第I位的最大值为窗口值+窗口前后的zoreDp之和
+ *
+ * @param customers
+ * @param grumpy
+ * @param X
+ * @return
+ */
+ public int maxSatisfied(int[] customers, int[] grumpy, int X) {
+ //存储第I位维持X位的满意数,防止重复计算
+ int[] dp = new int[customers.length + 1];
+ //存储不生气的满意总和数
+ int[] zoreDp = new int[customers.length + 1];
+ //初始化
+ int max = X > customers.length ? customers.length : X;
+ int sum = 0;
+ for (int i = 0; i < customers.length; i++) {
+ if (i < X) {
+ dp[i + 1] = sum += customers[i];
+ }
+ zoreDp[i + 1] = (grumpy[i] == 0) ? customers[i] + zoreDp[i] : zoreDp[i];
+ }
+ int retMax = dp[max] + zoreDp[customers.length] - zoreDp[max];
+ for (int i = X; i < customers.length; i++) {
+ dp[i + 1] = dp[i] - customers[i - X] + customers[i];
+ int otherZore = zoreDp[customers.length] - zoreDp[i + 1] + zoreDp[i - X + 1];
+ retMax = Math.max(retMax, dp[i + 1] + otherZore);
+ }
+
+ return retMax;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_1053_prevPermOpt1.java b/src/pp/arithmetic/leetcode/_1053_prevPermOpt1.java
new file mode 100644
index 0000000..c2e6fb1
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_1053_prevPermOpt1.java
@@ -0,0 +1,100 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+
+/**
+ * Created by wangpeng on 2019-06-06.
+ * 1053. 交换一次的先前排列
+ *
+ * 给你一个正整数的数组 A(其中的元素不一定完全不同),请你返回可在 一次交换(交换两数字 A[i] 和 A[j] 的位置)后得到的、按字典序排列小于 A 的最大可能排列。
+ *
+ * 如果无法这么操作,就请返回原数组。
+ *
+ *
+ * 示例 1:
+ *
+ * 输入:[3,2,1]
+ * 输出:[3,1,2]
+ * 解释:
+ * 交换 2 和 1
+ *
+ *
+ * 示例 2:
+ *
+ * 输入:[1,1,5]
+ * 输出:[1,1,5]
+ * 解释:
+ * 这已经是最小排列
+ *
+ *
+ * 示例 3:
+ *
+ * 输入:[1,9,4,6,7]
+ * 输出:[1,7,4,6,9]
+ * 解释:
+ * 交换 9 和 7
+ *
+ *
+ * 示例 4:
+ *
+ * 输入:[3,1,1,3]
+ * 输出:[1,3,1,3]
+ * 解释:
+ * 交换 1 和 3
+ *
+ *
+ * 提示:
+ *
+ * 1 <= A.length <= 10000
+ * 1 <= A[i] <= 10000
+ *
+ * @see previous-permutation-with-one-swap
+ */
+public class _1053_prevPermOpt1 {
+
+ public static void main(String[] args) {
+ _1053_prevPermOpt1 prevPermOpt1 = new _1053_prevPermOpt1();
+ Util.printArray(prevPermOpt1.prevPermOpt1(new int[]{1, 9, 4, 6, 7}));
+ }
+
+ /**
+ * 解题思路:
+ * 这道题目的关键是 按字典序排列小于 A 的最大可能排列, 那么有
+ *
+ * 1.对当前序列进行逆序查找,找到第一个降序的位置i,使得A[i]>A[i+1]A[i]>A[i+1]
+ * 1.1>由于A[i]>A[i+1]A[i]>A[i+1],必能构造比当前字典序小的序列
+ * 1.2>由于逆序查找,交换A[i]为最优解
+ * 2.寻找在 A[i] 最左边且小于 A[i] 的最大的数字 A[j]
+ * 2.1>由于 A[j] < A[]i]A[j]由于 A[j] 是满足关系的最大的最左的,因此一定是满足小于关系的交换后字典序最大的
+ *
+ * @param A
+ * @return
+ */
+ public int[] prevPermOpt1(int[] A) {
+ int len = A.length;
+ int curMax = -1;
+ int index = -1;
+ boolean hasResult = false;
+ for (int i = len - 2; i >= 0; i--) {
+ if (A[i + 1] < A[i]) { // 此处逆序,需要移动A[i]
+ for (int j = i + 1; j < len; j++) { // 寻找与 A[i] 交换的位置
+ if (A[i] > A[j]) { // 必须满足 A[i] > A[j],否则不能满足交换后的字典序小于原始字典序
+ hasResult = true;
+ if (A[j] > curMax) {
+ curMax = A[j];
+ index = j;
+ }
+ }
+ }
+ if (hasResult) {
+ int tmp = A[i];
+ A[i] = A[index];
+ A[index] = tmp;
+ return A;
+ }
+ }
+ }
+ return A;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_1054_rearrangeBarcodes.java b/src/pp/arithmetic/leetcode/_1054_rearrangeBarcodes.java
new file mode 100644
index 0000000..4bf714a
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_1054_rearrangeBarcodes.java
@@ -0,0 +1,112 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+
+/**
+ * Created by wangpeng on 2019-06-10.
+ * 1054. 距离相等的条形码
+ *
+ * 在一个仓库里,有一排条形码,其中第 i 个条形码为 barcodes[i]。
+ *
+ * 请你重新排列这些条形码,使其中两个相邻的条形码 不能 相等。 你可以返回任何满足该要求的答案,此题保证存在答案。
+ *
+ *
+ *
+ * 示例 1:
+ *
+ * 输入:[1,1,1,2,2,2]
+ * 输出:[2,1,2,1,2,1]
+ * 示例 2:
+ *
+ * 输入:[1,1,1,1,2,2,3,3]
+ * 输出:[1,3,1,3,2,1,2,1]
+ *
+ *
+ * 提示:
+ *
+ * 1 <= barcodes.length <= 10000
+ * 1 <= barcodes[i] <= 10000
+ *
+ *
+ * @see distant-barcodes
+ */
+public class _1054_rearrangeBarcodes {
+ public static void main(String[] args) {
+ _1054_rearrangeBarcodes rearrangeBarcodes = new _1054_rearrangeBarcodes();
+ Util.printArray(rearrangeBarcodes.rearrangeBarcodes(new int[]{1, 1, 1, 1, 2, 2, 3, 3}));
+ }
+
+ /**
+ * 解题思路:
+ * 为了保证可以实现相邻一定不相等,可以依次交错排列同一个数字。
+ *
+ * 首先统计每个数字的出现次数
+ * 最特殊的情况为,数组的长度为奇数,某一个数字出现 (length+1)/2(length+1)/2 次,
+ * 如 [2, 1, 2, 1, 2],此时必须先从奇数位开始放置2,之后才能防止别的数组。
+ *
+ * 首先从奇数位开始放置出现次数最多的数字。
+ * 将其余数字放置在奇数位。
+ * 将剩余数字依次放置在偶数位。
+ *
+ * @param barcodes
+ * @return
+ */
+ public int[] rearrangeBarcodes(int[] barcodes) {
+ /* 存在特殊情况结果类似 2, 1, 2, 1, 2
+ * 因此优先使用出现次数最多的元素填充奇数位
+ */
+ /* 统计每个数据的出现次数 */
+ int len = barcodes.length;
+ int[] count = new int[10001];
+ for (int i = 0; i < len; i++) {
+ count[barcodes[i]]++;
+ }
+ /* 得到出现次数最多的数字 */
+ int maxCnt = 0;
+ int maxNum = 0;
+ for (int i = 1; i < 10001; i++) {
+ if (count[i] > maxCnt) {
+ maxCnt = count[i];
+ maxNum = i;
+ }
+ }
+ /* 先填充奇数位 */
+ int[] result = new int[len];
+ int pos = 0; // result 填充位置
+ int idx = 0; // count 使用位置
+ /* 先使用出现次数最多的数字填充奇数位, 最多恰好填满 */
+ while (pos < len) {
+ if (count[maxNum] <= 0) {
+ break; // 填充完毕
+ } else {
+ count[maxNum]--;
+ result[pos] = maxNum;
+ pos += 2;
+ }
+ }
+ /* 尝试继续填充奇数位 */
+ while (pos < len) {
+ if (count[idx] <= 0) {
+ idx++;
+ continue;
+ } else {
+ count[idx]--;
+ result[pos] = idx;
+ pos += 2;
+ }
+ }
+ /* 继续填充偶数位 */
+ pos = 1;
+ while (pos < len) {
+ if (count[idx] <= 0) {
+ idx++;
+ continue;
+ } else {
+ count[idx]--;
+ result[pos] = idx;
+ pos += 2;
+ }
+ }
+ return result;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_105_buildTree.java b/src/pp/arithmetic/leetcode/_105_buildTree.java
new file mode 100644
index 0000000..79c7bc1
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_105_buildTree.java
@@ -0,0 +1,126 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+import pp.arithmetic.model.TreeNode;
+
+import java.util.Arrays;
+
+/**
+ * Created by wangpeng on 2019-07-27.
+ * 105. 从前序与中序遍历序列构造二叉树
+ *
+ * 根据一棵树的前序遍历与中序遍历构造二叉树。
+ *
+ * 注意:
+ * 你可以假设树中没有重复的元素。
+ *
+ * 例如,给出
+ *
+ * 前序遍历 preorder = [3,9,20,15,7]
+ * 中序遍历 inorder = [9,3,15,20,7]
+ * 返回如下的二叉树:
+ *
+ * 3
+ * / \
+ * 9 20
+ * / \
+ * 15 7
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _105_buildTree {
+
+ public static void main(String[] args) {
+ _105_buildTree buildTree = new _105_buildTree();
+ Util.printTree(buildTree.buildTree1(new int[]{3, 9, 20, 15, 7}, new int[]{9, 3, 15, 20, 7}));
+ //优化方案
+ Util.printTree(buildTree.buildTree(new int[]{1, 2, 3}, new int[]{3, 2, 1}));
+ Util.printTree(buildTree.buildTree(new int[]{3, 9, 20, 15, 7}, new int[]{9, 3, 15, 20, 7}));
+ }
+
+ /**
+ * 解题思路:
+ * 1.确定根节点,前序的首位就是根节点
+ * 2.确定根节点的左子树和右子树,找到中序根节点之前的就是左子树,之后的就是右子树
+ * 3.将左子树和右子树的前序和中序传递到buildTree中,递归1-2步骤
+ *
+ * 执行耗时
+ * 执行用时 :48 ms, 在所有 Java 提交中击败了9.05%的用户
+ * 内存消耗 :77.6 MB, 在所有 Java 提交中击败了5.07%的用户
+ *
+ * 优化:提交时间耗时有点长,感觉问题出在数组拷贝下,将数组拷贝改为传递下标试试
+ * {@link _105_buildTree#buildTree(int[], int[])}
+ *
+ * @param preorder
+ * @param inorder
+ * @return
+ */
+ public TreeNode buildTree1(int[] preorder, int[] inorder) {
+ if (preorder.length == 0) return null;
+ //1
+ TreeNode root = new TreeNode(preorder[0]);
+ if (preorder.length == 1) return root;
+ //2
+ int leftIndex;
+ for (leftIndex = 0; leftIndex < inorder.length; leftIndex++) {
+ if (inorder[leftIndex] == preorder[0]) {
+ break;
+ }
+ }
+ //3
+ TreeNode leftNode = buildTree1(Arrays.copyOfRange(preorder, 1, leftIndex + 1), Arrays.copyOfRange(inorder, 0, leftIndex));
+ TreeNode rightNode = buildTree1(Arrays.copyOfRange(preorder, leftIndex + 1, preorder.length), Arrays.copyOfRange(inorder, leftIndex + 1, inorder.length));
+ root.left = leftNode;
+ root.right = rightNode;
+ return root;
+ }
+
+ /**
+ * 优化方案:避免数组的拷贝
+ *
+ * 执行用时 :3 ms, 在所有 Java 提交中击败了99.12%的用户
+ * 内存消耗 :37.5 MB, 在所有 Java 提交中击败了70.21%的用户
+ *
+ * @param preorder
+ * @param inorder
+ * @return
+ */
+ public TreeNode buildTree(int[] preorder, int[] inorder) {
+ return buildTree(preorder.length, preorder, 0, inorder, 0);
+ }
+
+ // 从前序和中序构造二叉树,前序和中序是大数组中的一段[start, start + count)
+ private TreeNode buildTree(int count, int[] preOrder, int preStart, int[] inOrder, int inStart) {
+ if (count <= 0) return null;
+
+ int rootValue = preOrder[preStart];
+ TreeNode root = new TreeNode(rootValue);
+
+ // 从inorder中找到root值,(inorder)左边就是左子树,(inorder)右边就是右子树
+ // 然后在preorder中,数出与inorder中相同的个数即可
+ int pos = inStart + count - 1;
+ for (; pos >= inStart; --pos) {
+ if (inOrder[pos] == rootValue) {
+ break;
+ }
+ }
+ int leftCount = pos - inStart;
+ int rightCount = inStart + count - pos - 1;
+
+ if (leftCount > 0) {
+ int leftInStart = inStart;
+ int leftPreStart = preStart + 1;
+ root.left = buildTree(leftCount, preOrder, leftPreStart, inOrder, leftInStart);
+ }
+
+ if (rightCount > 0) {
+ int rightInStart = pos + 1;
+ int rightPreStart = preStart + 1 + leftCount;
+ root.right = buildTree(rightCount, preOrder, rightPreStart, inOrder, rightInStart);
+ }
+
+ return root;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_106_buildTree.java b/src/pp/arithmetic/leetcode/_106_buildTree.java
new file mode 100644
index 0000000..5a3d6dc
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_106_buildTree.java
@@ -0,0 +1,74 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+import pp.arithmetic.model.TreeNode;
+
+import java.util.Arrays;
+
+/**
+ * Created by wangpeng on 2019-12-09.
+ * 106. 从中序与后序遍历序列构造二叉树
+ *
+ * 根据一棵树的中序遍历与后序遍历构造二叉树。
+ *
+ * 注意:
+ * 你可以假设树中没有重复的元素。
+ *
+ * 例如,给出
+ *
+ * 中序遍历 inorder = [9,3,15,20,7]
+ * 后序遍历 postorder = [9,15,7,20,3]
+ * 返回如下的二叉树:
+ *
+ * 3
+ * / \
+ * 9 20
+ * / \
+ * 15 7
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/construct-binary-tree-from-inorder-and-postorder-traversal
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _106_buildTree {
+
+ public static void main(String[] args) {
+ _106_buildTree buildTree = new _106_buildTree();
+ TreeNode treeNode = buildTree.buildTree(new int[]{9, 3, 15, 20, 7}, new int[]{9, 15, 7, 20, 3});
+ Util.printTree(treeNode);
+ }
+
+ /**
+ * 解题思路:
+ * 中序:左->中->右,后序:左->右->中
+ * 1、取后序的最后一位就是根节点
+ * 2、遍历中序,找到根节点在中序中的位置I,I左边的就是左子树,右边就是右子树
+ * 3、分别取中序和后续的0-I位置,得到的就是左子树的中序和后续遍历接通,重复步骤1、2将左子树构造出来
+ * 4、同理步骤3,将右子树构造出来
+ *
+ * 执行用时 :19 ms, 在所有 java 提交中击败了29.64%的用户
+ * 内存消耗 :77.3 MB, 在所有 java 提交中击败了5.17%的用户
+ *
+ * 用时耗时优化建议:Arrays.copy可以转换为数组的index下标遍历
+ *
+ * @param inorder
+ * @param postorder
+ * @return
+ */
+ public TreeNode buildTree(int[] inorder, int[] postorder) {
+ if (inorder.length == 0) return null;
+ int rootVal = postorder[postorder.length - 1];
+ TreeNode rootNode = new TreeNode(rootVal);
+ int rootIndex = 0;
+ for (int i = 0; i < inorder.length; i++) {
+ if (inorder[i] == rootVal){
+ rootIndex = i;
+ break;
+ }
+ }
+ rootNode.left = buildTree(Arrays.copyOfRange(inorder, 0, rootIndex), Arrays.copyOfRange(postorder, 0, rootIndex));
+ rootNode.right = buildTree(Arrays.copyOfRange(inorder, rootIndex + 1, inorder.length), Arrays.copyOfRange(postorder, rootIndex, postorder.length - 1));
+ return rootNode;
+ }
+
+}
diff --git a/src/pp/arithmetic/leetcode/_107_levelOrderBottom.java b/src/pp/arithmetic/leetcode/_107_levelOrderBottom.java
new file mode 100644
index 0000000..5f080b4
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_107_levelOrderBottom.java
@@ -0,0 +1,84 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+import pp.arithmetic.model.TreeNode;
+
+import java.util.ArrayDeque;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Queue;
+
+/**
+ * Created by wangpeng on 2019-12-10.
+ * 107. 二叉树的层次遍历 II
+ *
+ * 给定一个二叉树,返回其节点值自底向上的层次遍历。 (即按从叶子节点所在层到根节点所在的层,逐层从左向右遍历)
+ *
+ * 例如:
+ * 给定二叉树 [3,9,20,null,null,15,7],
+ *
+ * 3
+ * / \
+ * 9 20
+ * / \
+ * 15 7
+ * 返回其自底向上的层次遍历为:
+ *
+ * [
+ * [15,7],
+ * [9,20],
+ * [3]
+ * ]
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/binary-tree-level-order-traversal-ii
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _107_levelOrderBottom {
+
+ public static void main(String[] args) {
+ _107_levelOrderBottom levelOrderBottom = new _107_levelOrderBottom();
+ TreeNode node = new TreeNode(3);
+ node.left = new TreeNode(9);
+ node.right = new TreeNode(20);
+ node.right.left = new TreeNode(15);
+ node.right.right = new TreeNode(7);
+ List
+ * 我们提供了一个类:
+ *
+ * public class Foo {
+ * public void one() { print("one"); }
+ * public void two() { print("two"); }
+ * public void three() { print("three"); }
+ * }
+ * 三个不同的线程将会共用一个 Foo 实例。
+ *
+ * 线程 A 将会调用 one() 方法
+ * 线程 B 将会调用 two() 方法
+ * 线程 C 将会调用 three() 方法
+ * 请设计修改程序,以确保 two() 方法在 one() 方法之后被执行,three() 方法在 two() 方法之后被执行。
+ *
+ *
+ *
+ * 示例 1:
+ *
+ * 输入: [1,2,3]
+ * 输出: "onetwothree"
+ * 解释:
+ * 有三个线程会被异步启动。
+ * 输入 [1,2,3] 表示线程 A 将会调用 one() 方法,线程 B 将会调用 two() 方法,线程 C 将会调用 three() 方法。
+ * 正确的输出是 "onetwothree"。
+ * 示例 2:
+ *
+ * 输入: [1,3,2]
+ * 输出: "onetwothree"
+ * 解释:
+ * 输入 [1,3,2] 表示线程 A 将会调用 one() 方法,线程 B 将会调用 three() 方法,线程 C 将会调用 two() 方法。
+ * 正确的输出是 "onetwothree"。
+ *
+ *
+ * 注意:
+ *
+ * 尽管输入中的数字似乎暗示了顺序,但是我们并不保证线程在操作系统中的调度顺序。
+ *
+ * 你看到的输入格式主要是为了确保测试的全面性。
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/print-in-order
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _1114_Foo {
+
+ public static void main(String[] args) {
+ Foo foo = new Foo();
+ Runnable runnable1 = new Runnable() {
+ @Override
+ public void run() {
+ System.out.println("printFirst");
+ }
+ };
+ Runnable runnable2 = new Runnable() {
+ @Override
+ public void run() {
+ System.out.println("printSecond");
+ }
+ };
+ Runnable runnable3 = new Runnable() {
+ @Override
+ public void run() {
+ System.out.println("printThird");
+ }
+ };
+ try {
+ foo.first(runnable1);
+ foo.third(runnable3);
+ foo.second(runnable2);
+ } catch (InterruptedException e) {
+ e.printStackTrace();
+ }
+
+ }
+
+ //一道题自己没有跑成功,不知道测试用例如何输出的
+ static class Foo {
+
+ private AtomicInteger firstJobDone = new AtomicInteger(0);
+ private AtomicInteger secondJobDone = new AtomicInteger(0);
+
+ public Foo() {}
+
+ public void first(Runnable printFirst) throws InterruptedException {
+ // printFirst.run() outputs "first".
+ printFirst.run();
+ // mark the first job as done, by increasing its count.
+ firstJobDone.incrementAndGet();
+ }
+
+ public void second(Runnable printSecond) throws InterruptedException {
+ while (firstJobDone.get() != 1) {
+ // waiting for the first job to be done.
+ }
+ // printSecond.run() outputs "second".
+ printSecond.run();
+ // mark the second as done, by increasing its count.
+ secondJobDone.incrementAndGet();
+ }
+
+ public void third(Runnable printThird) throws InterruptedException {
+ while (secondJobDone.get() != 1) {
+ // waiting for the second job to be done.
+ }
+ // printThird.run() outputs "third".
+ printThird.run();
+ }
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_1115_FooBar.java b/src/pp/arithmetic/leetcode/_1115_FooBar.java
new file mode 100644
index 0000000..b981d43
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_1115_FooBar.java
@@ -0,0 +1,111 @@
+package pp.arithmetic.leetcode;
+
+import java.util.concurrent.Semaphore;
+
+/**
+ * Created by wangpeng on 2020-07-08.
+ * 1115. 交替打印FooBar
+ *
+ * 我们提供一个类:
+ *
+ * class FooBar {
+ * public void foo() {
+ * for (int i = 0; i < n; i++) {
+ * print("foo");
+ * }
+ * }
+ *
+ * public void bar() {
+ * for (int i = 0; i < n; i++) {
+ * print("bar");
+ * }
+ * }
+ * }
+ * 两个不同的线程将会共用一个 FooBar 实例。其中一个线程将会调用 foo() 方法,另一个线程将会调用 bar() 方法。
+ *
+ * 请设计修改程序,以确保 "foobar" 被输出 n 次。
+ *
+ *
+ *
+ * 示例 1:
+ *
+ * 输入: n = 1
+ * 输出: "foobar"
+ * 解释: 这里有两个线程被异步启动。其中一个调用 foo() 方法, 另一个调用 bar() 方法,"foobar" 将被输出一次。
+ * 示例 2:
+ *
+ * 输入: n = 2
+ * 输出: "foobarfoobar"
+ * 解释: "foobar" 将被输出两次。
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/print-foobar-alternately
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _1115_FooBar {
+
+ public static void main(String[] args) {
+
+ FooBar fooBar = new FooBar(5);
+ new Thread() {
+ @Override
+ public void run() {
+ try {
+ fooBar.foo(new Runnable() {
+ @Override
+ public void run() {
+ System.out.println("foo");
+ }
+ });
+ } catch (InterruptedException e) {
+ e.printStackTrace();
+ }
+ }
+ }.start();
+ new Thread() {
+ @Override
+ public void run() {
+ try {
+ fooBar.bar(new Runnable() {
+ @Override
+ public void run() {
+ System.out.println("bar");
+ }
+ });
+ } catch (InterruptedException e) {
+ e.printStackTrace();
+ }
+ }
+ }.start();
+
+ }
+
+ static class FooBar {
+ private Semaphore fooSe = new Semaphore(0);
+ private Semaphore barSe = new Semaphore(1);
+
+ private int n;
+
+ public FooBar(int n) {
+ this.n = n;
+ }
+
+ public void foo(Runnable printFoo) throws InterruptedException {
+
+ for (int i = 0; i < n; i++) {
+ barSe.acquire();
+ printFoo.run();
+ fooSe.release();
+ }
+ }
+
+ public void bar(Runnable printBar) throws InterruptedException {
+
+ for (int i = 0; i < n; i++) {
+ fooSe.acquire();
+ printBar.run();
+ barSe.release();
+ }
+ }
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_1116_ZeroEvenOdd.java b/src/pp/arithmetic/leetcode/_1116_ZeroEvenOdd.java
new file mode 100644
index 0000000..5aeac21
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_1116_ZeroEvenOdd.java
@@ -0,0 +1,125 @@
+package pp.arithmetic.leetcode;
+
+import java.util.concurrent.Semaphore;
+import java.util.function.IntConsumer;
+
+/**
+ * Created by wangpeng on 2020-07-09.
+ * 1116. 打印零与奇偶数
+ *
+ * 假设有这么一个类:
+ *
+ * class ZeroEvenOdd {
+ * public ZeroEvenOdd(int n) { ... } // 构造函数
+ * public void zero(printNumber) { ... } // 仅打印出 0
+ * public void even(printNumber) { ... } // 仅打印出 偶数
+ * public void odd(printNumber) { ... } // 仅打印出 奇数
+ * }
+ * 相同的一个 ZeroEvenOdd 类实例将会传递给三个不同的线程:
+ *
+ * 线程 A 将调用 zero(),它只输出 0 。
+ * 线程 B 将调用 even(),它只输出偶数。
+ * 线程 C 将调用 odd(),它只输出奇数。
+ * 每个线程都有一个 printNumber 方法来输出一个整数。请修改给出的代码以输出整数序列 010203040506... ,其中序列的长度必须为 2n。
+ *
+ *
+ *
+ * 示例 1:
+ *
+ * 输入:n = 2
+ * 输出:"0102"
+ * 说明:三条线程异步执行,其中一个调用 zero(),另一个线程调用 even(),最后一个线程调用odd()。正确的输出为 "0102"。
+ * 示例 2:
+ *
+ * 输入:n = 5
+ * 输出:"0102030405"
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/print-zero-even-odd
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _1116_ZeroEvenOdd {
+
+ public static void main(String[] args) {
+ ZeroEvenOdd zeroEvenOdd = new ZeroEvenOdd(5);
+ IntConsumer printNumber = new IntConsumer() {
+ @Override
+ public void accept(int value) {
+ System.out.println(value);
+ }
+ };
+ new Thread(){
+ @Override
+ public void run() {
+ super.run();
+ try {
+ zeroEvenOdd.zero(printNumber);
+ } catch (InterruptedException e) {
+ e.printStackTrace();
+ }
+ }
+ }.start();
+ new Thread(){
+ @Override
+ public void run() {
+ super.run();
+ try {
+ zeroEvenOdd.even(printNumber);
+ } catch (InterruptedException e) {
+ e.printStackTrace();
+ }
+ }
+ }.start();
+ new Thread(){
+ @Override
+ public void run() {
+ super.run();
+ try {
+ zeroEvenOdd.odd(printNumber);
+ } catch (InterruptedException e) {
+ e.printStackTrace();
+ }
+ }
+ }.start();
+ }
+
+ static class ZeroEvenOdd {
+ private int n;
+ private Semaphore zeroSe = new Semaphore(1);
+ private Semaphore evenSe = new Semaphore(0);
+ private Semaphore oddSe = new Semaphore(0);
+
+ public ZeroEvenOdd(int n) {
+ this.n = n;
+ }
+
+ // printNumber.accept(x) outputs "x", where x is an integer.
+ public void zero(IntConsumer printNumber) throws InterruptedException {
+ for (int i = 0; i < n; i++) {
+ zeroSe.acquire();
+ printNumber.accept(0);
+ if (i % 2 == 0) {
+ evenSe.release();
+ } else {
+ oddSe.release();
+ }
+ }
+ }
+
+ public void even(IntConsumer printNumber) throws InterruptedException {
+ for (int i = 1; i <= n; i+=2) {
+ evenSe.acquire();
+ printNumber.accept(i);
+ zeroSe.release();
+ }
+ }
+
+ public void odd(IntConsumer printNumber) throws InterruptedException {
+ for (int i = 2; i <= n; i+=2) {
+ oddSe.acquire();
+ printNumber.accept(i);
+ zeroSe.release();
+ }
+ }
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_1117_H2O.java b/src/pp/arithmetic/leetcode/_1117_H2O.java
new file mode 100644
index 0000000..79a195e
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_1117_H2O.java
@@ -0,0 +1,197 @@
+package pp.arithmetic.leetcode;
+
+import java.util.concurrent.BrokenBarrierException;
+import java.util.concurrent.CyclicBarrier;
+import java.util.concurrent.Semaphore;
+
+/**
+ * Created by wangpeng on 2020-07-15.
+ * 1117. H2O 生成
+ *
+ * 现在有两种线程,氧 oxygen 和氢 hydrogen,你的目标是组织这两种线程来产生水分子。
+ *
+ * 存在一个屏障(barrier)使得每个线程必须等候直到一个完整水分子能够被产生出来。
+ *
+ * 氢和氧线程会被分别给予 releaseHydrogen 和 releaseOxygen 方法来允许它们突破屏障。
+ *
+ * 这些线程应该三三成组突破屏障并能立即组合产生一个水分子。
+ *
+ * 你必须保证产生一个水分子所需线程的结合必须发生在下一个水分子产生之前。
+ *
+ * 换句话说:
+ *
+ * 如果一个氧线程到达屏障时没有氢线程到达,它必须等候直到两个氢线程到达。
+ * 如果一个氢线程到达屏障时没有其它线程到达,它必须等候直到一个氧线程和另一个氢线程到达。
+ * 书写满足这些限制条件的氢、氧线程同步代码。
+ *
+ *
+ *
+ * 示例 1:
+ *
+ * 输入: "HOH"
+ * 输出: "HHO"
+ * 解释: "HOH" 和 "OHH" 依然都是有效解。
+ * 示例 2:
+ *
+ * 输入: "OOHHHH"
+ * 输出: "HHOHHO"
+ * 解释: "HOHHHO", "OHHHHO", "HHOHOH", "HOHHOH", "OHHHOH", "HHOOHH", "HOHOHH" 和 "OHHOHH" 依然都是有效解。
+ *
+ *
+ * 提示:
+ *
+ * 输入字符串的总长将会是 3n, 1 ≤ n ≤ 50;
+ * 输入字符串中的 “H” 总数将会是 2n 。
+ * 输入字符串中的 “O” 总数将会是 n 。
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/building-h2o
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _1117_H2O {
+
+
+ public static void main(String[] args) {
+
+ int n = 6;
+ H2O h2O = new H2O();
+ for (int i = 0; i < n * 2; i++) {
+ //H
+ new Thread() {
+ @Override
+ public void run() {
+ super.run();
+ try {
+ h2O.hydrogen(new Runnable() {
+ @Override
+ public void run() {
+ System.out.println("H");
+ }
+ });
+ } catch (InterruptedException e) {
+ e.printStackTrace();
+ }
+ }
+ }.start();
+ }
+ for (int i = 0; i < n; i++) {
+ //O
+ new Thread() {
+ @Override
+ public void run() {
+ super.run();
+ try {
+ h2O.oxygen(new Runnable() {
+ @Override
+ public void run() {
+ System.out.println("O");
+ }
+ });
+ } catch (InterruptedException e) {
+ e.printStackTrace();
+ }
+ }
+ }.start();
+ }
+ }
+
+ //使用系统类进行优化
+ class H2O2 {
+
+ private Semaphore hs;
+ private Semaphore os;
+ private CyclicBarrier totalBarrier;
+
+ public H2O2() {
+ hs = new Semaphore(2);
+ os = new Semaphore(1);
+ //await用于标识等待所有的线程都达到barrier才继续执行
+ totalBarrier = new CyclicBarrier(3);
+ }
+
+ public void hydrogen(Runnable releaseHydrogen) throws InterruptedException {
+ hs.acquire();
+ // releaseHydrogen.run() outputs "H". Do not change or remove this line.
+ releaseHydrogen.run();
+ try {
+ totalBarrier.await();
+ } catch (BrokenBarrierException e) {
+ e.printStackTrace();
+ }
+ hs.release();
+ }
+
+ public void oxygen(Runnable releaseOxygen) throws InterruptedException {
+ os.acquire();
+ // releaseOxygen.run() outputs "O". Do not change or remove this line.
+ releaseOxygen.run();
+ try {
+ totalBarrier.await();
+ } catch (BrokenBarrierException e) {
+ e.printStackTrace();
+ }
+ os.release();
+ }
+ }
+
+
+ static class H2O {
+
+ private final Object lock = new Object();
+ private int hc = 2;
+ private int oc = 1;
+
+ public H2O() {
+
+ }
+
+ public void hydrogen(Runnable releaseHydrogen) throws InterruptedException {
+
+ boolean flag = false;
+ synchronized (lock) {
+ while (hc == 0) {
+ lock.wait();
+ synchronized (lock) {
+ if (hc > 0) {
+ hc--;
+ flag = true;
+ break;
+ }
+ }
+ }
+ if (!flag) hc--;
+ // releaseHydrogen.run() outputs "H". Do not change or remove this line.
+ releaseHydrogen.run();
+ reset();
+ }
+ }
+
+ public void oxygen(Runnable releaseOxygen) throws InterruptedException {
+ boolean flag = false;
+ synchronized (lock) {
+ while (oc == 0) {
+ lock.wait();
+ synchronized (lock) {
+ if (oc > 0) {
+ oc--;
+ flag = true;
+ break;
+ }
+ }
+ }
+ if (!flag) oc--;
+ // releaseOxygen.run() outputs "O". Do not change or remove this line.
+ releaseOxygen.run();
+ reset();
+ }
+ }
+
+ private void reset() {
+ if (hc == 0 && oc == 0) {
+ hc = 2;
+ oc = 1;
+ lock.notifyAll();
+ }
+ }
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_111_minDepth.java b/src/pp/arithmetic/leetcode/_111_minDepth.java
new file mode 100644
index 0000000..b294a1e
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_111_minDepth.java
@@ -0,0 +1,55 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+import pp.arithmetic.model.TreeNode;
+
+/**
+ * Created by wangpeng on 2019-12-12.
+ * 111. 二叉树的最小深度
+ *
+ * 给定一个二叉树,找出其最小深度。
+ *
+ * 最小深度是从根节点到最近叶子节点的最短路径上的节点数量。
+ *
+ * 说明: 叶子节点是指没有子节点的节点。
+ *
+ * 示例:
+ *
+ * 给定二叉树 [3,9,20,null,null,15,7],
+ *
+ * 3
+ * / \
+ * 9 20
+ * / \
+ * 15 7
+ * 返回它的最小深度 2.
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/minimum-depth-of-binary-tree
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _111_minDepth {
+
+ public static void main(String[] args) {
+ _111_minDepth minDepth = new _111_minDepth();
+ System.out.println(minDepth.minDepth(Util.generateTreeNode(new Integer[]{3, 9, 20, null, null, 15, 7})));
+ }
+
+ /**
+ * 解题思路:DFS求解
+ * 1、求左子树的最小深度
+ * 2、求右子树的最小深度
+ * 3、求根节点的最小深度 = Math.min(left,right)+1
+ *
+ * 需要注意一点:如左/右子树为空,得取有值得叶节点长度
+ *
+ * @param root
+ * @return
+ */
+ public int minDepth(TreeNode root) {
+ if (root == null) return 0;
+ int left = minDepth(root.left);
+ int right = minDepth(root.right);
+ return (left == 0 || right == 0) ? left + right + 1 : Math.min(left, right) + 1;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_112_hasPathSum.java b/src/pp/arithmetic/leetcode/_112_hasPathSum.java
new file mode 100644
index 0000000..cc37d2e
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_112_hasPathSum.java
@@ -0,0 +1,67 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+import pp.arithmetic.model.TreeNode;
+
+/**
+ * Created by wangpeng on 2019-12-12.
+ * 112. 路径总和
+ *
+ * 给定一个二叉树和一个目标和,判断该树中是否存在根节点到叶子节点的路径,这条路径上所有节点值相加等于目标和。
+ *
+ * 说明: 叶子节点是指没有子节点的节点。
+ *
+ * 示例:
+ * 给定如下二叉树,以及目标和 sum = 22,
+ *
+ * 5
+ * / \
+ * 4 8
+ * / / \
+ * 11 13 4
+ * / \ \
+ * 7 2 1
+ * 返回 true, 因为存在目标和为 22 的根节点到叶子节点的路径 5->4->11->2。
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/path-sum
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _112_hasPathSum {
+
+ public static void main(String[] args) {
+ _112_hasPathSum hasPathSum = new _112_hasPathSum();
+ TreeNode treeNode = Util.generateTreeNode(new Integer[]{5, 4, 7, 11, null, 13, 4, 7, 2, null, null, null, 1});
+ System.out.println(hasPathSum.hasPathSum(treeNode,22));
+ System.out.println(hasPathSum.hasPathSum(Util.generateTreeNode(new Integer[]{1,2}),1));
+ }
+
+ /**
+ * 解题思路:
+ * 1、sum减去当前根节点的val,将新的sum传递给左右子树
+ * 2、左右子树重复步骤1
+ * 3、如最终的节点==null并且sum==0则找到目标路径
+ *
+ * 注意:叶节点的定义
+ *
+ * @param root
+ * @param sum
+ * @return
+ */
+ public boolean hasPathSum(TreeNode root, int sum) {
+ if (root == null) return false;
+ return dfs(root, sum);
+ }
+
+ private boolean dfs(TreeNode root, int sum) {
+ if (root == null) return sum == 0;
+ int newSum = sum - root.val;
+ if (root.left == null && root.right == null) return newSum == 0;
+ boolean left = dfs(root.left, newSum);
+ boolean right = dfs(root.right, newSum);
+ if (root.left != null && root.right != null) return left || right;
+ if (root.left != null) return left;
+ if (root.right != null) return right;
+ return false;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_115_numDistinct.java b/src/pp/arithmetic/leetcode/_115_numDistinct.java
new file mode 100644
index 0000000..1610c0b
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_115_numDistinct.java
@@ -0,0 +1,142 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+
+/**
+ * Created by wangpeng on 2019-12-13.
+ * 115. 不同的子序列
+ *
+ * 给定一个字符串 S 和一个字符串 T,计算在 S 的子序列中 T 出现的个数。
+ *
+ * 一个字符串的一个子序列是指,通过删除一些(也可以不删除)字符且不干扰剩余字符相对位置所组成的新字符串。(例如,"ACE" 是 "ABCDE" 的一个子序列,而 "AEC" 不是)
+ *
+ * 示例 1:
+ *
+ * 输入: S = "rabbbit", T = "rabbit"
+ * 输出: 3
+ * 解释:
+ *
+ * 如下图所示, 有 3 种可以从 S 中得到 "rabbit" 的方案。
+ * (上箭头符号 ^ 表示选取的字母)
+ *
+ * rabbbit
+ * ^^^^ ^^
+ * rabbbit
+ * ^^ ^^^^
+ * rabbbit
+ * ^^^ ^^^
+ * 示例 2:
+ *
+ * 输入: S = "babgbag", T = "bag"
+ * 输出: 5
+ * 解释:
+ *
+ * 如下图所示, 有 5 种可以从 S 中得到 "bag" 的方案。
+ * (上箭头符号 ^ 表示选取的字母)
+ *
+ * babgbag
+ * ^^ ^
+ * babgbag
+ * ^^ ^
+ * babgbag
+ * ^ ^^
+ * babgbag
+ * ^ ^^
+ * babgbag
+ * ^^^
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/distinct-subsequences
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _115_numDistinct {
+
+ public static void main(String[] args) {
+ _115_numDistinct numDistinct = new _115_numDistinct();
+ System.out.println(numDistinct.numDistinct("aaa", "aa"));
+ System.out.println(numDistinct.numDistinct("rabbbit", "rabbit"));
+ System.out.println(numDistinct.numDistinct("babgbag", "bag"));
+ System.out.println(numDistinct.numDistinct("adbdadeecadeadeccaeaabdabdbcdabddddabcaaadbabaaedeeddeaeebcdeabcaaaeeaeeabcddcebddebeebedaecccbdcbcedbdaeaedcdebeecdaaedaacadbdccabddaddacdddc", "bcddceeeebecbc"));
+ Util.printDivideLine();
+ System.out.println(numDistinct.numDistinct2("babgbag", "bag"));
+ System.out.println(numDistinct.numDistinct2("aaa", "aa"));
+ System.out.println(numDistinct.numDistinct2("rabbbit", "rabbit"));
+ System.out.println(numDistinct.numDistinct2("adbdadeecadeadeccaeaabdabdbcdabddddabcaaadbabaaedeeddeaeebcdeabcaaaeeaeeabcddcebddebeebedaecccbdcbcedbdaeaedcdebeecdaaedaacadbdccabddaddacdddc", "bcddceeeebecbc"));
+ }
+
+ /**
+ * 解题思路:
+ * 通过模拟题意中的过程,感知有点回溯的感觉:
+ * 1、优先匹配前面的
+ * 2、匹配上了之后,再匹配后面的
+ * 3、直到匹配到最后一个,向后搜索匹配的,直到末尾
+ * 4、最后一位匹配到末尾之后,倒数第二位向后搜索匹配
+ * 5、如此循环,直至第一位也匹配到末尾结束
+ *
+ * 可解题,遇到复杂的提交超时:
+ * 比如这跟case:
+ * "adbdadeecadeadeccaeaabdabdbcdabddddabcaaadbabaaedeeddeaeebcdeabcaaaeeaeeabcddcebddebeebedaecccbdcbcedbdaeaedcdebeecdaaedaacadbdccabddaddacdddc"
+ * "bcddceeeebecbc"
+ * 本地跑出结果:700531452
+ *
+ * 优化思考:是不是可以考虑将遍历过程中的一些结果保存起来,而不是每次凑重新计算==>动态规划{@link _115_numDistinct#numDistinct2(String, String)}
+ *
+ * @param s
+ * @param t
+ * @return
+ */
+ public int numDistinct(String s, String t) {
+ if (s.length() < t.length()) return 0;
+ int sum = 0;
+ int ti = 0;
+ int si = 0;
+ while (si < s.length() && ti < t.length()) {
+ if (s.charAt(si) == t.charAt(ti)) {
+ if (si + 1 < s.length() && ti + 1 < t.length()) {
+ sum += numDistinct(s.substring(si + 1), t.substring(ti + 1));
+ } else {
+ if (ti == t.length() - 1) {
+ sum += 1;
+ }
+ }
+ }
+ si++;
+ }
+
+ return sum;
+ }
+
+ /**
+ * 优化求解:找递进规律(s:babgbag,t:bag)
+ * T/S "" b a b g b a g
+ * "" 1 1 1 1 1 1 1 1
+ * b 0 1 1 2 2 3 3 3
+ * a 0 0 1 1 1 1 4 4
+ * g 0 0 0 0 1 1 1 5
+ *
+ * dp[t.length() + 1][s.length() + 1] : dp[i][j]代表t[0-i]在s[0-j]中的出现的次数
+ * 如果某一位t[i]==s[j],则此时的次数=dp[i-1][j-1]+dp[i][j-1]
+ * 如果某一位t[i]!=s[j],则此时的次数=dp[i][j-1]
+ *
+ * 执行用时 :7 ms, 在所有 java 提交中击败了79.83%的用户
+ * 内存消耗 :35.8 MB, 在所有 java 提交中击败了85.40%的用户
+ *
+ * @param s
+ * @param t
+ * @return
+ */
+ public int numDistinct2(String s, String t) {
+ int[][] dp = new int[t.length() + 1][s.length() + 1];
+ for (int j = 0; j < s.length() + 1; j++) dp[0][j] = 1;
+ for (int i = 1; i < t.length() + 1; i++) {
+ for (int j = 1; j < s.length() + 1; j++) {
+ if (t.charAt(i - 1) == s.charAt(j - 1)) {
+ dp[i][j] = dp[i - 1][j - 1] + dp[i][j - 1];
+ } else {
+ dp[i][j] = dp[i][j - 1];
+ }
+ }
+ }
+ return dp[t.length()][s.length()];
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_116_connect.java b/src/pp/arithmetic/leetcode/_116_connect.java
new file mode 100644
index 0000000..27b27dd
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_116_connect.java
@@ -0,0 +1,81 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.model.Node;
+
+/**
+ * Created by wangpeng on 2019-12-14.
+ * 116. 填充每个节点的下一个右侧节点指针
+ *
+ * 给定一个完美二叉树,其所有叶子节点都在同一层,每个父节点都有两个子节点。二叉树定义如下:
+ *
+ * struct Node {
+ * int val;
+ * Node *left;
+ * Node *right;
+ * Node *next;
+ * }
+ * 填充它的每个 next 指针,让这个指针指向其下一个右侧节点。如果找不到下一个右侧节点,则将 next 指针设置为 NULL。
+ *
+ * 初始状态下,所有 next 指针都被设置为 NULL。
+ *
+ *
+ *
+ * 示例:
+ *
+ * https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2019/02/15/116_sample.png
+ *
+ *
+ * 输入:{"$id":"1","left":{"$id":"2","left":{"$id":"3","left":null,"next":null,"right":null,"val":4},"next":null,"right":{"$id":"4","left":null,"next":null,"right":null,"val":5},"val":2},"next":null,"right":{"$id":"5","left":{"$id":"6","left":null,"next":null,"right":null,"val":6},"next":null,"right":{"$id":"7","left":null,"next":null,"right":null,"val":7},"val":3},"val":1}
+ *
+ * 输出:{"$id":"1","left":{"$id":"2","left":{"$id":"3","left":null,"next":{"$id":"4","left":null,"next":{"$id":"5","left":null,"next":{"$id":"6","left":null,"next":null,"right":null,"val":7},"right":null,"val":6},"right":null,"val":5},"right":null,"val":4},"next":{"$id":"7","left":{"$ref":"5"},"next":null,"right":{"$ref":"6"},"val":3},"right":{"$ref":"4"},"val":2},"next":null,"right":{"$ref":"7"},"val":1}
+ *
+ * 解释:给定二叉树如图 A 所示,你的函数应该填充它的每个 next 指针,以指向其下一个右侧节点,如图 B 所示。
+ *
+ *
+ * 提示:
+ *
+ * 你只能使用常量级额外空间。
+ * 使用递归解题也符合要求,本题中递归程序占用的栈空间不算做额外的空间复杂度。
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/populating-next-right-pointers-in-each-node
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _116_connect {
+
+ public static void main(String[] args) {
+ _116_connect connect = new _116_connect();
+ Node node = new Node(1);
+ node.left = new Node(2);
+ node.right = new Node(3);
+ node.left.left = new Node(4);
+ node.left.right = new Node(5);
+ node.right.left = new Node(6);
+ node.right.right = new Node(7);
+ connect.connect(node);
+ System.out.println();
+ }
+
+ /**
+ * 解题思路:
+ * 总结题意:BFS遍历的时候将每一层的节点用next指针关联起来,难点是只能使用常量级空间
+ * 1、将左子树的最后侧,右子树的最左侧连接,同级向下一层层循环
+ * 2、同理作用于根节点的左右子树
+ *
+ * @param root
+ * @return
+ */
+ public Node connect(Node root) {
+ if (root == null) return null;
+ Node left = root.left;
+ Node right = root.right;
+ while (left != null) {
+ left.next = right;
+ left = left.right;
+ right = right.left;
+ }
+ connect(root.left);
+ connect(root.right);
+ return root;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_117_connect.java b/src/pp/arithmetic/leetcode/_117_connect.java
new file mode 100644
index 0000000..8db4604
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_117_connect.java
@@ -0,0 +1,97 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.model.Node;
+
+/**
+ * Created by wangpeng on 2019-12-16.
+ * 117. 填充每个节点的下一个右侧节点指针 II
+ *
+ * 给定一个二叉树
+ *
+ * struct Node {
+ * int val;
+ * Node *left;
+ * Node *right;
+ * Node *next;
+ * }
+ * 填充它的每个 next 指针,让这个指针指向其下一个右侧节点。如果找不到下一个右侧节点,则将 next 指针设置为 NULL。
+ *
+ * 初始状态下,所有 next 指针都被设置为 NULL。
+ *
+ *
+ *
+ * 进阶:
+ *
+ * 你只能使用常量级额外空间。
+ * 使用递归解题也符合要求,本题中递归程序占用的栈空间不算做额外的空间复杂度。
+ *
+ *
+ * 示例:
+ *
+ * https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2019/02/15/117_sample.png
+ *
+ * 输入:root = [1,2,3,4,5,null,7]
+ * 输出:[1,#,2,3,#,4,5,7,#]
+ * 解释:给定二叉树如图 A 所示,你的函数应该填充它的每个 next 指针,以指向其下一个右侧节点,如图 B 所示。
+ *
+ *
+ * 提示:
+ *
+ * 树中的节点数小于 6000
+ * -100 <= node.val <= 100
+ *
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/populating-next-right-pointers-in-each-node-ii
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _117_connect {
+
+ public static void main(String[] args) {
+ //[1,2,3,4,5,null,6,7,null,null,null,null,8]
+ //[1,#,2,3,#,4,5,6,#,7,#]
+ //[1,#,2,3,#,4,5,6,#,7,8,#]
+ _117_connect connect = new _117_connect();
+ Node node = new Node(1);
+ node.left = new Node(2);
+ node.right = new Node(3);
+ node.left.left = new Node(4);
+ node.left.right = new Node(5);
+ node.right.right = new Node(6);
+ node.left.left.left = new Node(7);
+ node.right.right.right = new Node(8);
+ connect.connect(node);
+ System.out.println();
+ }
+
+ /**
+ * 解题思路:题目和{@link _116_connect}类似,唯一区别是此题不是完美二叉树,可能存在子树为空,所以不能使用116的解法,
+ * 得求解每一层需要连接的左右子树
+ *
+ * @param root
+ * @return
+ */
+ public Node connect(Node root) {
+ Node cur = root;
+ while (cur != null) {
+ Node dummy = new Node();
+ Node tail = dummy;
+ //遍历 cur 的当前层
+ while (cur != null) {
+ if (cur.left != null) {
+ tail.next = cur.left;
+ tail = tail.next;
+ }
+ if (cur.right != null) {
+ tail.next = cur.right;
+ tail = tail.next;
+ }
+ cur = cur.next;
+ }
+ //更新 cur 到下一层
+ cur = dummy.next;
+ }
+ return root;
+ }
+
+}
diff --git a/src/pp/arithmetic/leetcode/_118_generate.java b/src/pp/arithmetic/leetcode/_118_generate.java
new file mode 100644
index 0000000..02952cb
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_118_generate.java
@@ -0,0 +1,74 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * Created by wangpeng on 2019-12-18.
+ * 118. 杨辉三角
+ *
+ *
+ * 给定一个非负整数 numRows,生成杨辉三角的前 numRows 行。
+ *
+ * https://upload.wikimedia.org/wikipedia/commons/0/0d/PascalTriangleAnimated2.gif
+ *
+ * 在杨辉三角中,每个数是它左上方和右上方的数的和。
+ *
+ * 示例:
+ *
+ * 输入: 5
+ * 输出:
+ * [
+ * [1],
+ * [1,1],
+ * [1,2,1],
+ * [1,3,3,1],
+ * [1,4,6,4,1]
+ * ]
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/pascals-triangle
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _118_generate {
+
+
+ public static void main(String[] args) {
+ _118_generate generate = new _118_generate();
+ List
+ * 编写一个可以从 1 到 n 输出代表这个数字的字符串的程序,但是:
+ *
+ * 如果这个数字可以被 3 整除,输出 "fizz"。
+ * 如果这个数字可以被 5 整除,输出 "buzz"。
+ * 如果这个数字可以同时被 3 和 5 整除,输出 "fizzbuzz"。
+ * 例如,当 n = 15,输出: 1, 2, fizz, 4, buzz, fizz, 7, 8, fizz, buzz, 11, fizz, 13, 14, fizzbuzz。
+ *
+ * 假设有这么一个类:
+ *
+ * class FizzBuzz {
+ * public FizzBuzz(int n) { ... } // constructor
+ * public void fizz(printFizz) { ... } // only output "fizz"
+ * public void buzz(printBuzz) { ... } // only output "buzz"
+ * public void fizzbuzz(printFizzBuzz) { ... } // only output "fizzbuzz"
+ * public void number(printNumber) { ... } // only output the numbers
+ * }
+ * 请你实现一个有四个线程的多线程版 FizzBuzz, 同一个 FizzBuzz 实例会被如下四个线程使用:
+ *
+ * 线程A将调用 fizz() 来判断是否能被 3 整除,如果可以,则输出 fizz。
+ * 线程B将调用 buzz() 来判断是否能被 5 整除,如果可以,则输出 buzz。
+ * 线程C将调用 fizzbuzz() 来判断是否同时能被 3 和 5 整除,如果可以,则输出 fizzbuzz。
+ * 线程D将调用 number() 来实现输出既不能被 3 整除也不能被 5 整除的数字。
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/fizz-buzz-multithreaded
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _1195_FizzBuzz {
+
+ public static void main(String[] args) {
+ FizzBuzz fizzBuzz = new FizzBuzz(16);
+ new Thread() {
+ @Override
+ public void run() {
+ super.run();
+ try {
+ fizzBuzz.fizz(new Runnable() {
+ @Override
+ public void run() {
+ System.out.println("fizz");
+ }
+ });
+ } catch (InterruptedException e) {
+ e.printStackTrace();
+ }
+ }
+ }.start();
+ new Thread() {
+ @Override
+ public void run() {
+ super.run();
+ try {
+ fizzBuzz.buzz(new Runnable() {
+ @Override
+ public void run() {
+ System.out.println("buzz");
+ }
+ });
+ } catch (InterruptedException e) {
+ e.printStackTrace();
+ }
+ }
+ }.start();
+ new Thread() {
+ @Override
+ public void run() {
+ super.run();
+ try {
+ fizzBuzz.fizzbuzz(new Runnable() {
+ @Override
+ public void run() {
+ System.out.println("fizzbuzz");
+ }
+ });
+ } catch (InterruptedException e) {
+ e.printStackTrace();
+ }
+ }
+ }.start();
+ new Thread() {
+ @Override
+ public void run() {
+ super.run();
+ try {
+ fizzBuzz.number(new IntConsumer() {
+ @Override
+ public void accept(int value) {
+ System.out.println(value);
+ }
+ });
+ } catch (InterruptedException e) {
+ e.printStackTrace();
+ }
+ }
+ }.start();
+ }
+
+ /**
+ * 解题思路:对于多线程的问题,无非是加锁、等待、解锁、通知,
+ */
+ static class FizzBuzz {
+ private int n;
+ private int pn = 1;
+ private Semaphore fs = new Semaphore(0);
+ private Semaphore bs = new Semaphore(0);
+ private Semaphore fbs = new Semaphore(0);
+ private Semaphore ns = new Semaphore(1);
+
+ public FizzBuzz(int n) {
+ this.n = n;
+ }
+
+ // printFizz.run() outputs "fizz".
+ public void fizz(Runnable printFizz) throws InterruptedException {
+ while (pn <= n) {
+ fs.acquire();
+ if (pn > n) break;
+ printFizz.run();
+ pn++;
+ notifyPrint();
+ }
+ }
+
+ // printBuzz.run() outputs "buzz".
+ public void buzz(Runnable printBuzz) throws InterruptedException {
+ while (pn <= n) {
+ bs.acquire();
+ if (pn > n) break;
+ printBuzz.run();
+ pn++;
+ notifyPrint();
+ }
+ }
+
+ // printFizzBuzz.run() outputs "fizzbuzz".
+ public void fizzbuzz(Runnable printFizzBuzz) throws InterruptedException {
+ while (pn <= n) {
+ fbs.acquire();
+ if (pn > n) break;
+ printFizzBuzz.run();
+ pn++;
+ notifyPrint();
+ }
+ }
+
+ // printNumber.accept(x) outputs "x", where x is an integer.
+ public void number(IntConsumer printNumber) throws InterruptedException {
+ while (pn <= n) {
+ ns.acquire();
+ if (pn > n) break;
+ printNumber.accept(pn);
+ pn++;
+ notifyPrint();
+ }
+ }
+
+ private void notifyPrint() {
+ if (pn > n) {
+ fs.release();
+ bs.release();
+ fbs.release();
+ ns.release();
+ return;
+ }
+ boolean m3 = pn % 3 == 0;
+ boolean m5 = pn % 5 == 0;
+ if (m3 && m5) {
+ fbs.release();
+ } else if (m3) {
+ fs.release();
+ } else if (m5) {
+ bs.release();
+ } else {
+ ns.release();
+ }
+ }
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_119_getRow.java b/src/pp/arithmetic/leetcode/_119_getRow.java
new file mode 100644
index 0000000..4ab63d3
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_119_getRow.java
@@ -0,0 +1,61 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * Created by wangpeng on 2019-12-18.
+ * 119. 杨辉三角 II
+ *
+ * 给定一个非负索引 k,其中 k ≤ 33,返回杨辉三角的第 k 行。
+ *
+ * https://upload.wikimedia.org/wikipedia/commons/0/0d/PascalTriangleAnimated2.gif
+ *
+ * 在杨辉三角中,每个数是它左上方和右上方的数的和。
+ *
+ * 示例:
+ *
+ * 输入: 3
+ * 输出: [1,3,3,1]
+ * 进阶:
+ *
+ * 你可以优化你的算法到 O(k) 空间复杂度吗?
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/pascals-triangle-ii
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _119_getRow {
+
+ public static void main(String[] args) {
+ _119_getRow getRow = new _119_getRow();
+ Util.printList(getRow.getRow(6));
+ }
+
+ /**
+ * 解题思路:
+ * 最简单的就是像 {@link _118_generate} 中解题方式,求出第row行的结果,可是期望 O(k) 空间复杂度,这是难点
+ * 考虑能不能通过规律找出直接计算第row行的结果?
+ * 通过杨辉三角规律可知,第i行第j个得数字结果是(i,j)的组合数
+ *
+ * 执行用时 :1 ms, 在所有 java 提交中击败了93.68%的用户
+ * 内存消耗 :33.6 MB, 在所有 java 提交中击败了23.63%的用户
+ *
+ * @param rowIndex
+ * @return
+ */
+ public List
+ * 给定一个非空二叉树,返回其最大路径和。
+ *
+ * 本题中,路径被定义为一条从树中任意节点出发,达到任意节点的序列。该路径至少包含一个节点,且不一定经过根节点。
+ *
+ * 示例 1:
+ *
+ * 输入: [1,2,3]
+ *
+ * 1
+ * / \
+ * 2 3
+ *
+ * 输出: 6
+ * 示例 2:
+ *
+ *
+ * 输入: [-10,9,20,null,null,15,7]
+ *
+ * -10
+ * / \
+ * 9 20
+ * / \
+ * 15 7
+ *
+ * 输出: 42
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/binary-tree-maximum-path-sum
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _124_maxPathSum {
+
+ public static void main(String[] args) {
+ _124_maxPathSum maxPathSum = new _124_maxPathSum();
+ TreeNode root = new TreeNode(2);
+ root.left = new TreeNode(1);
+ root.right = new TreeNode(3);
+ System.out.println(maxPathSum.maxPathSum(root));
+ TreeNode root1 = new TreeNode(-10);
+ root1.left = new TreeNode(9);
+ root1.right = new TreeNode(20);
+ root1.right.left = new TreeNode(15);
+ root1.right.right = new TreeNode(7);
+ System.out.println(maxPathSum.maxPathSum(root1));
+ System.out.println(maxPathSum.maxPathSum(new TreeNode(-3)));
+ System.out.println(maxPathSum.maxPathSum(Util.generateTreeNode()));
+ //[2,-1]
+ TreeNode root2 = new TreeNode(2);
+ root2.left = new TreeNode(-1);
+ System.out.println(maxPathSum.maxPathSum(root2));
+ }
+
+ private int maxPath = Integer.MIN_VALUE;
+
+ /**
+ * 解题思路:
+ * 树的解题离不开递归遍历
+ * 1.寻找左子树的最大路径和(负数抛弃)
+ * 2.寻找右子树的最大路径和(负数抛弃)
+ * 3.如根节点是整数(含0),合并左右子树中的正数(负数不要),比较已存在得最大值
+ * 4.返回结果是根节点、根节点+左子树、根节点+右子树的最大值
+ *
+ * 注意:
+ * 1.因为求的是连续路径,如果子树的最大值中根节点未参数计算,不应该加入子树父节点的计算
+ * 2.可能存在左、右子树都是可以用的,但是路径不能走回头路,只能返回左右子树和根节点的最大值
+ *
+ * @param root
+ * @return
+ */
+ public int maxPathSum(TreeNode root) {
+ maxPath = Integer.MIN_VALUE;
+ dfs(root);
+ return maxPath;
+ }
+
+ private int dfs(TreeNode root) {
+ if (root == null) return 0;
+ //1
+ int leftMax = dfs(root.left);
+ //2
+ int rightMax = dfs(root.right);
+ //3
+ int max = root.val;
+ if (leftMax > 0) max += leftMax;
+ if (rightMax > 0) max += rightMax;
+ maxPath = Math.max(maxPath, max);
+ //4
+ return Math.max(root.val, Math.max(root.val + leftMax, root.val + rightMax));
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_129_sumNumbers.java b/src/pp/arithmetic/leetcode/_129_sumNumbers.java
new file mode 100644
index 0000000..d9a28e5
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_129_sumNumbers.java
@@ -0,0 +1,84 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+import pp.arithmetic.model.TreeNode;
+
+/**
+ * Created by wangpeng on 2019-12-21.
+ * 129. 求根到叶子节点数字之和
+ *
+ * 给定一个二叉树,它的每个结点都存放一个 0-9 的数字,每条从根到叶子节点的路径都代表一个数字。
+ *
+ * 例如,从根到叶子节点路径 1->2->3 代表数字 123。
+ *
+ * 计算从根到叶子节点生成的所有数字之和。
+ *
+ * 说明: 叶子节点是指没有子节点的节点。
+ *
+ * 示例 1:
+ *
+ * 输入: [1,2,3]
+ * 1
+ * / \
+ * 2 3
+ * 输出: 25
+ * 解释:
+ * 从根到叶子节点路径 1->2 代表数字 12.
+ * 从根到叶子节点路径 1->3 代表数字 13.
+ * 因此,数字总和 = 12 + 13 = 25.
+ * 示例 2:
+ *
+ * 输入: [4,9,0,5,1]
+ * 4
+ * / \
+ * 9 0
+ * / \
+ * 5 1
+ * 输出: 1026
+ * 解释:
+ * 从根到叶子节点路径 4->9->5 代表数字 495.
+ * 从根到叶子节点路径 4->9->1 代表数字 491.
+ * 从根到叶子节点路径 4->0 代表数字 40.
+ * 因此,数字总和 = 495 + 491 + 40 = 1026.
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/sum-root-to-leaf-numbers
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _129_sumNumbers {
+
+ public static void main(String[] args) {
+ _129_sumNumbers sumNumbers = new _129_sumNumbers();
+ TreeNode treeNode = Util.generateTreeNode(new Integer[]{4, 9, 0, 5, 1});
+ System.out.println(sumNumbers.sumNumbers(treeNode));
+ }
+
+ private int sum = 0;
+
+ /**
+ * 解题思路:
+ * DFS遍历将之前的拼接节点代入,当到达叶节点后累加结果
+ *
+ * @param root
+ * @return
+ */
+ public int sumNumbers(TreeNode root) {
+ if (root == null) return 0;
+ dfs("",root);
+ return sum;
+ }
+
+ private void dfs(String preVal, TreeNode root) {
+ if (root.left == null && root.right == null) {
+ sum += Integer.parseInt(preVal + root.val);
+ return;
+ }
+ if (root.left != null) {
+ dfs(preVal + root.val, root.left);
+ }
+ if (root.right != null) {
+ dfs(preVal + root.val, root.right);
+ }
+ }
+
+}
diff --git a/src/pp/arithmetic/leetcode/_130_solve.java b/src/pp/arithmetic/leetcode/_130_solve.java
new file mode 100644
index 0000000..cbb37cd
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_130_solve.java
@@ -0,0 +1,88 @@
+package pp.arithmetic.leetcode;
+
+/**
+ * Created by wangpeng on 2019-12-23.
+ * 130. 被围绕的区域
+ *
+ * 给定一个二维的矩阵,包含 'X' 和 'O'(字母 O)。
+ *
+ * 找到所有被 'X' 围绕的区域,并将这些区域里所有的 'O' 用 'X' 填充。
+ *
+ * 示例:
+ *
+ * X X X X
+ * X O O X
+ * X X O X
+ * X O X X
+ * 运行你的函数后,矩阵变为:
+ *
+ * X X X X
+ * X X X X
+ * X X X X
+ * X O X X
+ * 解释:
+ *
+ * 被围绕的区间不会存在于边界上,换句话说,任何边界上的 'O' 都不会被填充为 'X'。 任何不在边界上,或不与边界上的 'O' 相连的 'O' 最终都会被填充为 'X'。如果两个元素在水平或垂直方向相邻,则称它们是“相连”的。
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/surrounded-regions
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _130_solve {
+
+ public static void main(String[] args) {
+ _130_solve solve = new _130_solve();
+ char[][] chars = {
+ {'X', 'X', 'X', 'X'},
+ {'X', 'O', 'X', 'X'},
+ {'X', 'X', 'O', 'X'},
+ {'X', 'O', 'X', 'X'}
+ };
+ solve.solve(chars);
+ }
+
+ /**
+ * 解题思路:
+ * 难点:如何确定一个O是否被X全部给围住
+ * char[][] board构建的其实是一张图,可以考虑使用图的DFS遍历
+ *
+ * @param board
+ */
+ public void solve(char[][] board) {
+ if (board == null || board.length == 0) return;
+ int m = board.length;
+ int n = board[0].length;
+ for (int i = 0; i < m; i++) {
+ for (int j = 0; j < n; j++) {
+ // 从边缘O开始搜索
+ boolean isEdge = i == 0 || j == 0 || i == m - 1 || j == n - 1;
+ if (isEdge && board[i][j] == 'O') {
+ dfs(board, i, j);
+ }
+ }
+ }
+
+ for (int i = 0; i < m; i++) {
+ for (int j = 0; j < n; j++) {
+ if (board[i][j] == 'O') {
+ board[i][j] = 'X';
+ }
+ if (board[i][j] == '#') {
+ board[i][j] = 'O';
+ }
+ }
+ }
+ }
+
+ public void dfs(char[][] board, int i, int j) {
+ if (i < 0 || j < 0 || i >= board.length || j >= board[0].length || board[i][j] == 'X' || board[i][j] == '#') {
+ // board[i][j] == '#' 说明已经搜索过了.
+ return;
+ }
+ board[i][j] = '#';
+ dfs(board, i - 1, j); // 上
+ dfs(board, i + 1, j); // 下
+ dfs(board, i, j - 1); // 左
+ dfs(board, i, j + 1); // 右
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_131_partition.java b/src/pp/arithmetic/leetcode/_131_partition.java
new file mode 100644
index 0000000..1d17ee4
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_131_partition.java
@@ -0,0 +1,85 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * Created by wangpeng on 2019-12-24.
+ * 131. 分割回文串
+ *
+ * 给定一个字符串 s,将 s 分割成一些子串,使每个子串都是回文串。
+ *
+ * 返回 s 所有可能的分割方案。
+ *
+ * 示例:
+ *
+ * 输入: "aab"
+ * 输出:
+ * [
+ * ["aa","b"],
+ * ["a","a","b"]
+ * ]
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/palindrome-partitioning
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _131_partition {
+
+ public static void main(String[] args) {
+ _131_partition partition = new _131_partition();
+ Util.printLists(partition.partition("aab"));
+ Util.printLists(partition.partition("abbaa"));
+ Util.printLists(partition.partition(""));
+ }
+
+ /**
+ * 解题思路:DFS遍历+回溯
+ * 1、DFS遍历,从s的第一位开始,逐步判断至最后一位
+ * 2、定义一个skip=1,从1开始,代表从当前位加上skip的结果是否是回文
+ * 3、定义一个循环,位置从0开始,得到所有的结果
+ *
+ * 执行用时 :8 ms, 在所有 java 提交中击败了20.05%的用户
+ * 内存消耗 :38.1 MB, 在所有 java 提交中击败了97.34%的用户
+ *
+ * @param s
+ * @return
+ */
+ public List
+ * 给你无向 连通 图中一个节点的引用,请你返回该图的 深拷贝(克隆)。
+ *
+ * 图中的每个节点都包含它的值 val(int) 和其邻居的列表(list[Node])。
+ *
+ * class Node {
+ * public int val;
+ * public List
+ * 测试用例格式:
+ *
+ * 简单起见,每个节点的值都和它的索引相同。例如,第一个节点值为 1,第二个节点值为 2,以此类推。该图在测试用例中使用邻接列表表示。
+ *
+ * 邻接列表是用于表示有限图的无序列表的集合。每个列表都描述了图中节点的邻居集。
+ *
+ * 给定节点将始终是图中的第一个节点(值为 1)。你必须将 给定节点的拷贝 作为对克隆图的引用返回。
+ *
+ *
+ *
+ * 示例 1:
+ *
+ *
+ *
+ * 输入:adjList = [[2,4],[1,3],[2,4],[1,3]]
+ * 输出:[[2,4],[1,3],[2,4],[1,3]]
+ * 解释:
+ * 图中有 4 个节点。
+ * 节点 1 的值是 1,它有两个邻居:节点 2 和 4 。
+ * 节点 2 的值是 2,它有两个邻居:节点 1 和 3 。
+ * 节点 3 的值是 3,它有两个邻居:节点 2 和 4 。
+ * 节点 4 的值是 4,它有两个邻居:节点 1 和 3 。
+ * 示例 2:
+ *
+ *
+ *
+ * 输入:adjList = [[]]
+ * 输出:[[]]
+ * 解释:输入包含一个空列表。该图仅仅只有一个值为 1 的节点,它没有任何邻居。
+ * 示例 3:
+ *
+ * 输入:adjList = []
+ * 输出:[]
+ * 解释:这个图是空的,它不含任何节点。
+ * 示例 4:
+ *
+ *
+ *
+ * 输入:adjList = [[2],[1]]
+ * 输出:[[2],[1]]
+ *
+ *
+ * 提示:
+ *
+ * 节点数介于 1 到 100 之间。
+ * 每个节点值都是唯一的。
+ * 无向图是一个简单图,这意味着图中没有重复的边,也没有自环。
+ * 由于图是无向的,如果节点 p 是节点 q 的邻居,那么节点 q 也必须是节点 p 的邻居。
+ * 图是连通图,你可以从给定节点访问到所有节点。
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/clone-graph
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _133_cloneGraph {
+
+ public static void main(String[] args) {
+ _133_cloneGraph cloneGraph = new _133_cloneGraph();
+ Node node1 = new Node();
+ node1.val = 1;
+ Node node2 = new Node();
+ node2.val = 2;
+ Node node3 = new Node();
+ node3.val = 3;
+ Node node4 = new Node();
+ node4.val = 4;
+ //[[2,4],[1,3],[2,4],[1,3]]
+ node1.neighbors = new ArrayList<>();
+ node1.neighbors.add(node2);
+ node1.neighbors.add(node4);
+ node2.neighbors = new ArrayList<>();
+ node2.neighbors.add(node1);
+ node2.neighbors.add(node3);
+ node3.neighbors = new ArrayList<>();
+ node3.neighbors.add(node2);
+ node3.neighbors.add(node4);
+ node4.neighbors = new ArrayList<>();
+ node4.neighbors.add(node1);
+ node4.neighbors.add(node3);
+ Node clone = cloneGraph.cloneGraph(node1);
+ System.out.println();
+ }
+
+ /**
+ * 解题思路:
+ * 先花了很大的力气读题目,最后发现就是图的深度遍历,由于每个节点值都是唯一的,用一个HashMap保存遍历过的节点,防止无限循环
+ * @param node
+ * @return
+ */
+ public Node cloneGraph(Node node) {
+ if (node == null){
+ return null;
+ }
+ HashMap
+ * 给定一个非空字符串 s 和一个包含非空单词列表的字典 wordDict,判定 s 是否可以被空格拆分为一个或多个在字典中出现的单词。
+ *
+ * 说明:
+ *
+ * 拆分时可以重复使用字典中的单词。
+ * 你可以假设字典中没有重复的单词。
+ * 示例 1:
+ *
+ * 输入: s = "leetcode", wordDict = ["leet", "code"]
+ * 输出: true
+ * 解释: 返回 true 因为 "leetcode" 可以被拆分成 "leet code"。
+ * 示例 2:
+ *
+ * 输入: s = "applepenapple", wordDict = ["apple", "pen"]
+ * 输出: true
+ * 解释: 返回 true 因为 "applepenapple" 可以被拆分成 "apple pen apple"。
+ * 注意你可以重复使用字典中的单词。
+ * 示例 3:
+ *
+ * 输入: s = "catsandog", wordDict = ["cats", "dog", "sand", "and", "cat"]
+ * 输出: false
+ *
+ * @see word-break
+ */
+public class _139_wordBreak {
+ public static void main(String[] args) {
+ _139_wordBreak wordBreak = new _139_wordBreak();
+ System.out.println(wordBreak.wordBreak("leetcode", Arrays.asList("leet", "code")));
+ System.out.println(wordBreak.wordBreak("applepenapple", Arrays.asList("apple", "pen")));
+ System.out.println(wordBreak.wordBreak("catsandog", Arrays.asList("cats", "dog", "sand", "and", "cat")));
+ System.out.println(wordBreak.wordBreak2("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaab", Arrays.asList("a","aa","aaa","aaaa","aaaaa","aaaaaa","aaaaaaa","aaaaaaaa","aaaaaaaaa","aaaaaaaaaa")));
+ }
+
+ /**
+ * 解题思路:回溯实现
+ * 0、用hashmap保存字典,减少匹配的耗时
+ * 1、按位逐个遍历字符串,看是否和字典中匹配,匹配上再后移截取
+ * 2、如果后续没有匹配上,直到字符串结束,那么上个字符串截取位置再向后寻找
+ *
+ * 可解题,但是提交超时,超时用例如下
+ * "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaab"
+ * ["a","aa","aaa","aaaa","aaaaa","aaaaaa","aaaaaaa","aaaaaaaa","aaaaaaaaa","aaaaaaaaaa"]
+ * 超时分析:对于上述测试用例,有大量重复的反复比较
+ *
+ * 解法二:{@link _139_wordBreak#wordBreak2(String, List)}
+ *
+ * @param s
+ * @param wordDict
+ * @return
+ */
+ public boolean wordBreak(String s, List
+ * 给定一个整数数组 nums ,找出一个序列中乘积最大的连续子序列(该序列至少包含一个数)。
+ *
+ * 示例 1:
+ *
+ * 输入: [2,3,-2,4]
+ * 输出: 6
+ * 解释: 子数组 [2,3] 有最大乘积 6。
+ * 示例 2:
+ *
+ * 输入: [-2,0,-1]
+ * 输出: 0
+ * 解释: 结果不能为 2, 因为 [-2,-1] 不是子数组。
+ *
+ * @see maximum-product-subarray
+ */
+public class _152_maxProduct {
+
+ public static void main(String[] args) {
+ _152_maxProduct maxProduct = new _152_maxProduct();
+ System.out.println(maxProduct.maxProduct(new int[]{2, 3, 2, -1, 0}));
+ System.out.println(maxProduct.maxProduct(new int[]{-2, 0, -1}));
+ System.out.println(maxProduct.maxProduct(new int[]{-2, 3, -4}));
+ System.out.println(maxProduct.maxProduct(new int[]{0, 2}));
+ }
+
+ /**
+ * 解题思路:
+ * 最暴力的方式当然是遍历到i,都和i之前的再循环一遍,找到最大值,双重遍历
+ * 上面的解题时间会超,所以得考虑利用之前的遍历结果,==>动态规划
+ *
+ * 求积的最大值,最麻烦的就是
+ * 当遇到0的时候,整个乘积会变成0;当遇到负数的时候,当前的最大乘积会变成最小乘积,最小乘积会变成最大乘积
+ *
+ * 所以用两个数组进行保存最大值和最小值
+ *
+ * 当前的最大值等于已知的最大值、最小值和当前值的乘积,当前值,这三个数的最大值。
+ * 当前的最小值等于已知的最大值、最小值和当前值的乘积,当前值,这三个数的最小值。
+ * 结果是最大值数组中的最大值。
+ *
+ * 数组可以进一步优化成int,空间复杂度从O(n)->O(1){@link _152_maxProduct#maxProduct2(int[])}
+ *
+ * @param nums
+ * @return
+ */
+ public int maxProduct(int[] nums) {
+ if (nums.length == 0) return 0;
+ if (nums.length == 1) return nums[0];
+ int[] max = new int[nums.length];
+ int[] min = new int[nums.length];
+ int retVal;
+ retVal = max[0] = min[0] = nums[0];
+ for (int i = 1; i < nums.length; i++) {
+ max[i] = Math.max(nums[i], Math.max(nums[i] * max[i - 1], nums[i] * min[i - 1]));
+ min[i] = Math.min(nums[i], Math.min(nums[i] * max[i - 1], nums[i] * min[i - 1]));
+ retVal = Math.max(retVal, max[i]);
+ }
+
+ return retVal;
+ }
+
+ public int maxProduct2(int[] nums) {
+ if (nums.length == 0) return 0;
+ if (nums.length == 1) return nums[0];
+ int max, min, retVal, preMax, preMin;
+ retVal = max = min = nums[0];
+ for (int i = 1; i < nums.length; i++) {
+ preMax = max;
+ preMin = min;
+ max = Math.max(nums[i], Math.max(nums[i] * preMax, nums[i] * preMin));
+ min = Math.min(nums[i], Math.min(nums[i] * preMax, nums[i] * preMin));
+ retVal = Math.max(retVal, max);
+ }
+
+ return retVal;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_169_majorityElement.java b/src/pp/arithmetic/leetcode/_169_majorityElement.java
new file mode 100644
index 0000000..a916b50
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_169_majorityElement.java
@@ -0,0 +1,87 @@
+package pp.arithmetic.leetcode;
+
+import java.util.HashMap;
+
+/**
+ * Created by wangpeng on 2019-08-01.
+ * 169. 求众数
+ *
+ * 给定一个大小为 n 的数组,找到其中的众数。众数是指在数组中出现次数大于 ⌊ n/2 ⌋ 的元素。
+ *
+ * 你可以假设数组是非空的,并且给定的数组总是存在众数。
+ *
+ * 示例 1:
+ *
+ * 输入: [3,2,3]
+ * 输出: 3
+ * 示例 2:
+ *
+ * 输入: [2,2,1,1,1,2,2]
+ * 输出: 2
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/majority-element
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _169_majorityElement {
+ public static void main(String[] args) {
+ _169_majorityElement majorityElement = new _169_majorityElement();
+ System.out.println(majorityElement.majorityElement(new int[]{3, 2, 3}));
+ System.out.println(majorityElement.majorityElement(new int[]{2, 2, 1, 1, 1, 2, 2}));
+ }
+
+ /**
+ * 解题思路:
+ * 如题所示,总是存在众数,所以是不是找出出现次数最大的数即可
+ * 利用一个HashMap存储遍历的结果树,最终找到最大值
+ *
+ * 提交结果:
+ * 执行用时 :33 ms, 在所有 Java 提交中击败了25.67%的用户
+ * 内存消耗 :50 MB, 在所有 Java 提交中击败了29.52%的用户
+ *
+ * 时间复杂度O(n),hashmap的扩容需要时间,有性能消耗
+ * 优化方案
+ *
+ * @param nums
+ * @return
+ */
+ public int majorityElement(int[] nums) {
+ HashMap
+ * 给定一个只包括 '(',')','{','}','[',']' 的字符串,判断字符串是否有效。
+ *
+ * 有效字符串需满足:
+ *
+ * 左括号必须用相同类型的右括号闭合。
+ * 左括号必须以正确的顺序闭合。
+ * 注意空字符串可被认为是有效字符串。
+ *
+ * 示例 1:
+ *
+ * 输入: "()"
+ * 输出: true
+ * 示例 2:
+ *
+ * 输入: "()[]{}"
+ * 输出: true
+ * 示例 3:
+ *
+ * 输入: "(]"
+ * 输出: false
+ * 示例 4:
+ *
+ * 输入: "([)]"
+ * 输出: false
+ * 示例 5:
+ *
+ * 输入: "{[]}"
+ * 输出: true
+ *
+ * @see valid-parentheses
+ */
+public class _20_isValid {
+ public static void main(String[] args) {
+ _20_isValid valid = new _20_isValid();
+ System.out.println(valid.isValid("()"));
+ System.out.println(valid.isValid("()[]{}"));
+ System.out.println(valid.isValid("(]"));
+ System.out.println(valid.isValid("([)]"));
+ System.out.println(valid.isValid("{[]}"));
+ }
+
+ /**
+ * 解题思路:
+ * 需要知道是否有效,也就是左右得成对出现,利用栈去做存储
+ * 1、左括号时,则入栈
+ * 2、有括号时,则判断栈顶是否是配套左括号,如是则将其出栈,否则无效
+ * 3、遍历完成后,如栈空则有效,反则无效
+ *
+ * @param s
+ * @return
+ */
+ public boolean isValid(String s) {
+ Stack
+ * 给定长度为 n 的整数数组 nums,其中 n > 1,返回输出数组 output ,其中 output[i] 等于 nums 中除 nums[i] 之外其余各元素的乘积。
+ *
+ * 示例:
+ *
+ * 输入: [1,2,3,4]
+ * 输出: [24,12,8,6]
+ * 说明: 请不要使用除法,且在 O(n) 时间复杂度内完成此题。
+ *
+ * 进阶:
+ * 你可以在常数空间复杂度内完成这个题目吗?( 出于对空间复杂度分析的目的,输出数组不被视为额外空间。)
+ *
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/product-of-array-except-self
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _238_productExceptSelf {
+
+ public static void main(String[] args) {
+ _238_productExceptSelf productExceptSelf = new _238_productExceptSelf();
+ Util.printArray(productExceptSelf.productExceptSelf(new int[]{0, 0}));
+ Util.printArray(productExceptSelf.productExceptSelf(new int[]{1, 0}));
+ Util.printArray(productExceptSelf.productExceptSelf(new int[]{0, 1, 2, 3, 4}));
+ }
+
+ /**
+ * 解题思路:
+ * 1.遍历数组,将所有的数进行乘积,得到最大的乘积
+ * 2.再次遍历数组,将最大的乘积除以遍历item,得到除自身以外的乘积
+ *
+ * 注意:
+ * 1.如item为0,要跳过处理,不能乘和除
+ * 2.如果数组中有0,则非0的数字结果都是0,如0的个数>1,则所有数字结果都是0
+ *
+ * 执行用时 :4 ms, 在所有 Java 提交中击败了30.79%的用户
+ * 内存消耗 :51.7 MB, 在所有 Java 提交中击败了22.40%的用户
+ *
+ * 解题过程略复杂,他人优秀解法{@link _238_productExceptSelf#productExceptSelf2(int[])}
+ *
+ * @param nums
+ * @return
+ */
+ public int[] productExceptSelf(int[] nums) {
+ int[] retNums = new int[nums.length];
+ int max = 0;
+ int zoreCount = 0;
+ //1
+ for (int i = 0; i < nums.length; i++) {
+ int item = nums[i];
+ if (item != 0) {
+ if (max == 0) max = 1;
+ max *= item;
+ } else {
+ zoreCount++;
+ }
+ }
+ //2
+ for (int i = 0; i < nums.length; i++) {
+ int item = nums[i];
+ if (item != 0) {
+ if (zoreCount > 0) {
+ retNums[i] = 0;
+ } else {
+ retNums[i] = max / item;
+ }
+ } else {
+ if (zoreCount > 1) {
+ retNums[i] = 0;
+ } else {
+ retNums[i] = max;
+ }
+ }
+ }
+
+ return retNums;
+ }
+
+ /**
+ * 他人解题思路,借鉴下
+ * 乘积 = 当前数左边的乘积 * 当前数右边的乘积
+ * 有一些分治的思想
+ *
+ * @param nums
+ * @return
+ */
+ public int[] productExceptSelf2(int[] nums) {
+ int[] res = new int[nums.length];
+ int k = 1;
+ for (int i = 0; i < res.length; i++) {
+ res[i] = k;
+ k = k * nums[i]; // 此时数组存储的是除去当前元素左边的元素乘积
+ }
+ k = 1;
+ for (int i = res.length - 1; i >= 0; i--) {
+ res[i] *= k; // k为该数右边的乘积。
+ k *= nums[i]; // 此时数组等于左边的 * 该数右边的。
+ }
+ return res;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_240_searchMatrix.java b/src/pp/arithmetic/leetcode/_240_searchMatrix.java
new file mode 100644
index 0000000..83ade15
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_240_searchMatrix.java
@@ -0,0 +1,124 @@
+package pp.arithmetic.leetcode;
+
+/**
+ * Created by wangpeng on 2019-08-05.
+ * 240. 搜索二维矩阵 II
+ *
+ * 编写一个高效的算法来搜索 m x n 矩阵 matrix 中的一个目标值 target。该矩阵具有以下特性:
+ *
+ * 每行的元素从左到右升序排列。
+ * 每列的元素从上到下升序排列。
+ * 示例:
+ *
+ * 现有矩阵 matrix 如下:
+ *
+ * [
+ * [1, 4, 7, 11, 15],
+ * [2, 5, 8, 12, 19],
+ * [3, 6, 9, 16, 22],
+ * [10, 13, 14, 17, 24],
+ * [18, 21, 23, 26, 30]
+ * ]
+ * 给定 target = 5,返回 true。
+ *
+ * 给定 target = 20,返回 false。
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/search-a-2d-matrix-ii
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _240_searchMatrix {
+
+ public static void main(String[] args) {
+ _240_searchMatrix searchMatrix = new _240_searchMatrix();
+ int[][] matrix = new int[][]{
+ {1, 4, 7, 11, 15},
+ {2, 5, 8, 12, 19},
+ {3, 6, 9, 16, 22},
+ {10, 13, 14, 17, 24},
+ {18, 21, 23, 26, 30}
+ };
+ //初始题解
+ System.out.println(searchMatrix.searchMatrix(matrix, 5));
+ System.out.println(searchMatrix.searchMatrix(matrix, 20));
+ System.out.println(searchMatrix.searchMatrix(matrix, 18));
+ System.out.println(searchMatrix.searchMatrix(matrix, 19));
+ //更优题解
+ System.out.println(searchMatrix.searchMatrix2(matrix, 5));
+ }
+
+ /**
+ * 解题思路:
+ * 最简单的解法就是全遍历一遍矩阵,时间复杂度O(m*n),肯定不是题目中所说的高效算法
+ * 看看能不能减少一些不必要的遍历,观察矩阵是有规则的:从左到右和从上到下都是递增的
+ * 1.斜脚线遍历Matrix,如果taget==遍历项,则直接返回
+ * 2.如果target>遍历项,则继续遍历下一个斜脚线
+ * 3.如果target<遍历项,则结果在其左子矩阵和右上子矩阵中,将子矩阵循环1-3
+ *
+ * 执行用时 :19 ms, 在所有 Java 提交中击败了16.82%的用户
+ * 内存消耗 :51.2 MB, 在所有 Java 提交中击败了42.79%的用户
+ * 耗时思考:
+ *
+ * @param matrix
+ * @param target
+ * @return
+ */
+ public boolean searchMatrix(int[][] matrix, int target) {
+ if (matrix.length == 0) return false;
+ return searchMatrix(matrix, target, 0, matrix.length, 0, matrix[0].length);
+ }
+
+ private boolean searchMatrix(int[][] matrix, int target, int sx, int ex, int sy, int ey) {
+ if (sx == ex || sy == ey) return false;
+ int x = sx, y = sy;
+ while (x < ex && y < ey) {
+ if (target == matrix[x][y]) {
+ return true;
+ }
+ if (target > matrix[x][y]) {
+ x++;
+ y++;
+ } else {
+ return searchMatrix(matrix, target, sx, x, y, ey) || searchMatrix(matrix, target, x, ex, sy, y);
+ }
+ }
+ if (x == ex && y == ey) {
+ return false;
+ }
+ //matrix不一定是对称矩阵,可能会存在遗留项
+ if (x < ex) {
+ return searchMatrix(matrix, target, x, ex, sy, ey);
+ }
+ if (y < ey) {
+ return searchMatrix(matrix, target, sx, ex, y, ey);
+ }
+
+ return false;
+ }
+
+ /**
+ * 时间复杂度O(m+n)
+ *
+ * @param matrix
+ * @param target
+ * @return
+ */
+ public boolean searchMatrix2(int[][] matrix, int target) {
+ if (matrix == null || matrix.length == 0 || matrix[0] == null || matrix[0].length == 0) return false;
+ int row = matrix.length - 1;
+ int col = 0;
+ int count = 0;
+ while (row >= 0 && col < matrix[0].length) {
+ if (target < matrix[row][col]) row--;
+ else if (target > matrix[row][col]) col++;
+ else {
+ count++;
+ row--;
+ col++;
+ }
+ }
+ return count > 0;
+
+ }
+
+}
diff --git a/src/pp/arithmetic/leetcode/_264_nthUglyNumber.java b/src/pp/arithmetic/leetcode/_264_nthUglyNumber.java
new file mode 100644
index 0000000..86eb030
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_264_nthUglyNumber.java
@@ -0,0 +1,109 @@
+package pp.arithmetic.leetcode;
+
+import java.util.HashMap;
+
+/**
+ * Created by wangpeng on 2019-05-09.
+ * 264. 丑数 II
+ *
+ * 编写一个程序,找出第 n 个丑数。
+ *
+ * 丑数就是只包含质因数 2, 3, 5 的正整数。
+ *
+ * 示例:
+ *
+ * 输入: n = 10
+ * 输出: 12
+ * 解释: 1, 2, 3, 4, 5, 6, 8, 9, 10, 12 是前 10 个丑数。
+ * 说明:
+ *
+ * 1 是丑数。
+ * n 不超过1690。
+ *
+ * @see ugly-number-ii
+ */
+public class _264_nthUglyNumber {
+
+ public static void main(String[] args) {
+ _264_nthUglyNumber nthUglyNumber = new _264_nthUglyNumber();
+ System.out.println(nthUglyNumber.nthUglyNumber(10));
+ long start = System.currentTimeMillis();
+ System.out.println(nthUglyNumber.nthUglyNumber(431));
+ long end = System.currentTimeMillis();
+ System.out.println("循环法计算431耗时:" + (end - start));
+ start = System.currentTimeMillis();
+ System.out.println(nthUglyNumber.nthUglyNumber2(431));
+ end = System.currentTimeMillis();
+ System.out.println("三指针法计算431耗时:" + (end - start));
+ }
+
+ /**
+ * 解题二:动态规划+三指针
+ * dp保存按序排列的丑数,三指针分别是*2,*3,*5,找出下一个丑数
+ *
+ * @param n
+ * @return
+ */
+ public int nthUglyNumber2(int n) {
+ int[] dp = new int[n];
+ dp[0] = 1;
+ int i2 = 0, i3 = 0, i5 = 0;
+ for (int i = 1; i < n; i++) {
+ int min = Math.min(dp[i2] * 2, Math.min(dp[i3] * 3, dp[i5] * 5));
+ if (min == dp[i2] * 2) i2++;
+ if (min == dp[i3] * 3) i3++;
+ if (min == dp[i5] * 5) i5++;
+ dp[i] = min;
+ }
+
+ return dp[n - 1];
+ }
+
+ private HashMap
+ * 解题思路:
+ * 从1开始遍历,按丑数求解过程找出满足条件的第n个丑数(提交超时)
+ * 思路优化(如何利用之前的计算)
+ *
+ * @param n
+ * @return
+ */
+ public int nthUglyNumber(int n) {
+ map.put(1, true);
+ int uglyCount = 1;
+ int retVal = 1;
+ for (int i = 2; i < Integer.MAX_VALUE; i++) {
+ if (uglyCount >= n) {
+ break;
+ }
+ boolean isUgly = isUglyNumber(i);
+ if (isUgly) {
+ map.put(i, true);
+ uglyCount++;
+ retVal = i;
+ }
+ }
+
+ return retVal;
+ }
+
+ private boolean isUglyNumber(int num) {
+ while (num % 2 == 0) {
+ num = num / 2;
+ if (map.containsKey(num)) return true;
+ }
+ while (num % 5 == 0) {
+ num = num / 5;
+ if (map.containsKey(num)) return true;
+ }
+ while (num % 3 == 0) {
+ num = num / 3;
+ if (map.containsKey(num)) return true;
+ }
+ return num == 1;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_279_numSquares.java b/src/pp/arithmetic/leetcode/_279_numSquares.java
new file mode 100644
index 0000000..60ecfe4
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_279_numSquares.java
@@ -0,0 +1,58 @@
+package pp.arithmetic.leetcode;
+
+/**
+ * Created by wangpeng on 2019-05-09.
+ * 279. 完全平方数
+ *
+ * 给定正整数 n,找到若干个完全平方数(比如 1, 4, 9, 16, ...)使得它们的和等于 n。你需要让组成和的完全平方数的个数最少。
+ *
+ * 示例 1:
+ *
+ * 输入: n = 12
+ * 输出: 3
+ * 解释: 12 = 4 + 4 + 4.
+ * 示例 2:
+ *
+ * 输入: n = 13
+ * 输出: 2
+ * 解释: 13 = 4 + 9.
+ *
+ * @see perfect-squares
+ */
+public class _279_numSquares {
+
+ public static void main(String[] args) {
+ _279_numSquares numSquares = new _279_numSquares();
+ System.out.println(numSquares.numSquares(12));
+ System.out.println(numSquares.numSquares(13));
+ }
+
+ /**
+ * 直接思路:找出N最接近的平方数,再循环找出剩余最接近的平方数集合(结果可能不是最优)
+ * 比如:12->9+1+1+1,最优的是12->4+4+4
+ * 所以,上面的思路还得把所有的情况都求出来,再选出最少的,性能较差
+ *
+ * 优化思路:利用之前计算的步数,转换为动态规划方程
+ * dp[i]代表第i需要的最少步骤,遍历所有的情况,从而找出最优解
+ * for (int j = 1; i - j * j >= 0; j++) {
+ * dp[i] = Math.min(dp[i], dp[i - j * j] + 1);
+ * }
+ *
+ *
+ * @param n
+ * @return
+ */
+ public int numSquares(int n) {
+ //利用动态规划 定义长度为n+1的数组 对应索引所对应的数装最少的步数
+ int[] dp = new int[n + 1];
+ dp[0] = 0;
+ for (int i = 1; i <= n; i++) {
+ dp[i] = i; //先假设到这一步的最大的步数为每次+1
+ for (int j = 1; i - j * j >= 0; j++) { //i-j*j>=0 找到最大的j j*j就是i里面最大的完全平方数
+ //dp[i-j*j]+1 表示d[i-j*j]的步数+1 1即j*j这个完全平方数只需要一步
+ dp[i] = Math.min(dp[i], dp[i - j * j] + 1);
+ }
+ }
+ return dp[n];
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_27_removeElement.java b/src/pp/arithmetic/leetcode/_27_removeElement.java
new file mode 100644
index 0000000..b7eaab9
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_27_removeElement.java
@@ -0,0 +1,128 @@
+package pp.arithmetic.leetcode;
+
+import java.util.Arrays;
+import java.util.Collections;
+
+/**
+ * Created by wangpeng on 2019-04-15.
+ * 27. 移除元素
+ *
+ * 给定一个数组 nums 和一个值 val,你需要原地移除所有数值等于 val 的元素,返回移除后数组的新长度。
+ *
+ * 不要使用额外的数组空间,你必须在原地修改输入数组并在使用 O(1) 额外空间的条件下完成。
+ *
+ * 元素的顺序可以改变。你不需要考虑数组中超出新长度后面的元素。
+ *
+ * 示例 1:
+ *
+ * 给定 nums = [3,2,2,3], val = 3,
+ *
+ * 函数应该返回新的长度 2, 并且 nums 中的前两个元素均为 2。
+ *
+ * 你不需要考虑数组中超出新长度后面的元素。
+ * 示例 2:
+ *
+ * 给定 nums = [0,1,2,2,3,0,4,2], val = 2,
+ *
+ * 函数应该返回新的长度 5, 并且 nums 中的前五个元素为 0, 1, 3, 0, 4。
+ *
+ * 注意这五个元素可为任意顺序。
+ *
+ * 你不需要考虑数组中超出新长度后面的元素。
+ * 说明:
+ *
+ * 为什么返回数值是整数,但输出的答案是数组呢?
+ *
+ * 请注意,输入数组是以“引用”方式传递的,这意味着在函数里修改输入数组对于调用者是可见的。
+ *
+ * 你可以想象内部操作如下:
+ *
+ * // nums 是以“引用”方式传递的。也就是说,不对实参作任何拷贝
+ * int len = removeElement(nums, val);
+ *
+ * // 在函数里修改输入数组对于调用者是可见的。
+ * // 根据你的函数返回的长度, 它会打印出数组中该长度范围内的所有元素。
+ * for (int i = 0; i < len; i++) {
+ * print(nums[i]);
+ * }
+ *
+ * @see remove-element
+ */
+public class _27_removeElement {
+
+ public static void main(String[] args) {
+ _27_removeElement element = new _27_removeElement();
+ System.out.println(element.removeElement(new int[]{3, 2, 2, 3}, 3));
+ System.out.println(element.removeElement(new int[]{0, 1, 2, 2, 3, 0, 4, 2}, 2));
+ System.out.println(element.removeElement(new int[]{3, 1, 0}, 11));
+ //解法二
+ System.out.println(element.removeElement2(new int[]{3, 2, 2, 3}, 3));
+ System.out.println(element.removeElement2(new int[]{0, 1, 2, 2, 3, 0, 4, 2}, 2));
+ System.out.println(element.removeElement2(new int[]{3, 1, 0}, 11));
+ }
+
+ /**
+ * 解题思路:
+ * 难点在O(1)的空间复杂度,需要原地修改
+ * 1、先对数组进行排序
+ * 2、找到==val的起始位置和终止位置
+ * 3、将终止位置后的数字前移至起始位置
+ *
+ * 更新一个更简洁的写法 {@link _27_removeElement#removeElement2(int[], int)}
+ *
+ * @param nums
+ * @param val
+ * @return
+ */
+ public int removeElement(int[] nums, int val) {
+ //1、排序
+ Arrays.sort(nums);
+ //2、找到起始和结束位置
+ int len = nums.length;
+ int si = 0, ei = len - 1;
+ while (si <= ei) {
+ if (nums[si] == val && nums[ei] == val) {
+ //3、前移
+ int temp = si;
+ for (int i = ei + 1; i < len; i++) {
+ nums[temp] = nums[i];
+ temp++;
+ }
+ return len - ei + si - 1;
+ }
+ if (nums[si] != val) {
+ si++;
+ }
+ if (nums[ei] != val) {
+ ei--;
+ }
+ }
+ if (len % 2 == 0) {
+ return len - ei + si - 1;
+ } else {
+ return len - ei + si - 2;
+ }
+ }
+
+ /**
+ * 解法二,写法更简洁
+ *
+ * @param nums
+ * @param val
+ * @return
+ */
+ public int removeElement2(int[] nums, int val) {
+
+ int retLen = 0;
+ int insertIndex = 0;
+ for (int i = 0; i < nums.length; i++) {
+ if (nums[i] == val) {
+ continue;
+ }
+ nums[insertIndex++] = nums[i];
+ retLen++;
+ }
+
+ return retLen;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_283_moveZeroes.java b/src/pp/arithmetic/leetcode/_283_moveZeroes.java
new file mode 100644
index 0000000..28e1016
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_283_moveZeroes.java
@@ -0,0 +1,61 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+
+/**
+ * Created by wangpeng on 2019-08-07.
+ * 283. 移动零
+ *
+ * 给定一个数组 nums,编写一个函数将所有 0 移动到数组的末尾,同时保持非零元素的相对顺序。
+ *
+ * 示例:
+ *
+ * 输入: [0,1,0,3,12]
+ * 输出: [1,3,12,0,0]
+ * 说明:
+ *
+ * 必须在原数组上操作,不能拷贝额外的数组。
+ * 尽量减少操作次数。
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/move-zeroes
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _283_moveZeroes {
+ public static void main(String[] args) {
+ _283_moveZeroes moveZeroes = new _283_moveZeroes();
+ int[] nums = {0, 1, 0, 3, 12};
+ moveZeroes.moveZeroes(nums);
+ Util.printArray(nums);
+ }
+
+ /**
+ * 解题思路:
+ * 1.遍历数组,找到第一个0并标记zeroIndex
+ * 2.找到下一个非0,将其与0交互,zeroIndex++
+ * 3.找到下一个0,不做任何处理
+ *
+ * @param nums
+ */
+ public void moveZeroes(int[] nums) {
+ int zeroIndex = -1;
+ //1
+ for (int i = 0; i < nums.length; i++) {
+ int num = nums[i];
+ if (num == 0) {
+ //1
+ if (zeroIndex == -1) {
+ zeroIndex = i;
+ }
+ //3
+ } else {
+ //2
+ if (zeroIndex != -1) {
+ nums[zeroIndex] = num;
+ nums[i] = 0;
+ zeroIndex++;
+ }
+ }
+ }
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_287_findDuplicate.java b/src/pp/arithmetic/leetcode/_287_findDuplicate.java
new file mode 100644
index 0000000..7be189f
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_287_findDuplicate.java
@@ -0,0 +1,75 @@
+package pp.arithmetic.leetcode;
+
+/**
+ * Created by wangpeng on 2019-08-07.
+ * 287. 寻找重复数
+ *
+ * 给定一个包含 n + 1 个整数的数组 nums,其数字都在 1 到 n 之间(包括 1 和 n),可知至少存在一个重复的整数。假设只有一个重复的整数,找出这个重复的数。
+ *
+ * 示例 1:
+ *
+ * 输入: [1,3,4,2,2]
+ * 输出: 2
+ * 示例 2:
+ *
+ * 输入: [3,1,3,4,2]
+ * 输出: 3
+ * 说明:
+ *
+ * 不能更改原数组(假设数组是只读的)。
+ * 只能使用额外的 O(1) 的空间。
+ * 时间复杂度小于 O(n^2) 。
+ * 数组中只有一个重复的数字,但它可能不止重复出现一次。
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/find-the-duplicate-number
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _287_findDuplicate {
+
+ public static void main(String[] args) {
+ _287_findDuplicate findDuplicate = new _287_findDuplicate();
+// System.out.println(findDuplicate.findDuplicate(new int[]{1, 3, 4, 2, 2}));
+// System.out.println(findDuplicate.findDuplicate(new int[]{3, 1, 3, 4, 2}));
+ System.out.println(findDuplicate.findDuplicate(new int[]{2, 5, 9, 6, 9, 3, 8, 9, 7, 1}));
+ }
+
+ /**
+ * 题意解读:
+ * 1、数组只读==>不能对数组进行重排序==>排序取连续两个相同的
+ * 2、O(1)空间==>不能用哈希等进行遍历存储==>哈希取出现次数>1的
+ * 3、O(n^2)的时间复杂度==>少于2次循环遍历,可以一次循环或者二分
+ * 如果没有上述限制,上面的方法都可行
+ *
+ * 解题思路:
+ * 仔细看题目,发现数组大小n+1,数组数字1-n,一定会存在重复数字
+ * 从0开始遍历,最开始一条直线,到后面会形成个环,可参考这张图 https://img-blog.csdn.net/20160101111128525
+ * 从图中来看,环和直线相遇的点就是重复数
+ * 1.用快慢指针,找到第一次相遇的点
+ * 2.将一个指针移至起始点,再次相遇的一定是环和直线相遇的点,也就是重复数
+ *
+ * 计算详解:https://leetcode-cn.com/problems/find-the-duplicate-number/solution/287-xun-zhao-zhong-fu-shu-java-kuai-man-zhi-zhen-t/
+ *
+ * @param nums
+ * @return
+ */
+ public int findDuplicate(int[] nums) {
+ // 1.找到第一次相遇点
+ int slow = nums[0];
+ int fast = nums[0];
+ do {
+ slow = nums[slow];
+ fast = nums[nums[fast]];
+ } while (slow != fast);
+
+ // 2.找第二次相遇点
+ int ptr1 = nums[0];
+ int ptr2 = slow;
+ while (ptr1 != ptr2) {
+ ptr1 = nums[ptr1];
+ ptr2 = nums[ptr2];
+ }
+
+ return ptr1;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_28_strStr.java b/src/pp/arithmetic/leetcode/_28_strStr.java
new file mode 100644
index 0000000..437aeae
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_28_strStr.java
@@ -0,0 +1,73 @@
+package pp.arithmetic.leetcode;
+
+/**
+ * Created by wangpeng on 2019-04-15.
+ * 28. 实现strStr()
+ *
+ * 实现 strStr() 函数。
+ *
+ * 给定一个 haystack 字符串和一个 needle 字符串,在 haystack 字符串中找出 needle 字符串出现的第一个位置 (从0开始)。如果不存在,则返回 -1。
+ *
+ * 示例 1:
+ *
+ * 输入: haystack = "hello", needle = "ll"
+ * 输出: 2
+ * 示例 2:
+ *
+ * 输入: haystack = "aaaaa", needle = "bba"
+ * 输出: -1
+ * 说明:
+ *
+ * 当 needle 是空字符串时,我们应当返回什么值呢?这是一个在面试中很好的问题。
+ *
+ * 对于本题而言,当 needle 是空字符串时我们应当返回 0 。这与C语言的 strstr() 以及 Java的 indexOf() 定义相符。
+ *
+ * @see implement-strstr
+ */
+public class _28_strStr {
+ public static void main(String[] args) {
+ _28_strStr str = new _28_strStr();
+ System.out.println(str.strStr("hello", "ll"));
+ System.out.println(str.strStr("aaaaa", "aab"));
+ System.out.println(str.strStr("a", "a"));
+ System.out.println(str.strStr("babbbbbabb", "bbab"));
+ }
+
+ /**
+ * 解题思路
+ * 本题是实现Java字符串中的 {@link String#indexOf(String)}方法
+ * 1、开始遍历 haystack,找到和 needle 相同的起始下标si
+ * 2、从si开始同时遍历 haystack和needle
+ * 3、如遍历过程中一直相同,则返回si,否则si后移1位
+ *
+ * @param haystack
+ * @param needle
+ * @return
+ */
+ public int strStr(String haystack, String needle) {
+ if (needle.length() == 0) {
+ return 0;
+ }
+ if (haystack.length() < needle.length()) {
+ return -1;
+ }
+ int ei;
+ for (int i = 0; i < haystack.length() - needle.length() + 1; i++) {
+ if (haystack.charAt(i) == needle.charAt(0)) {
+ ei = i;
+ for (int j = 1; j < needle.length(); j++) {
+ if (haystack.charAt(++ei) != needle.charAt(j)) {
+ break;
+ }
+ }
+ if (haystack.charAt(ei) == needle.charAt(ei - i)) {
+ //找到了
+ return i;
+ }
+ }
+ }
+
+
+ return -1;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_297_Codec.java b/src/pp/arithmetic/leetcode/_297_Codec.java
new file mode 100644
index 0000000..9bfa71c
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_297_Codec.java
@@ -0,0 +1,116 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+import pp.arithmetic.model.TreeNode;
+
+import java.util.LinkedList;
+import java.util.Queue;
+
+/**
+ * Created by wangpeng on 2019-08-16.
+ * 297. 二叉树的序列化与反序列化
+ *
+ * 序列化是将一个数据结构或者对象转换为连续的比特位的操作,进而可以将转换后的数据存储在一个文件或者内存中,同时也可以通过网络传输到另一个计算机环境,采取相反方式重构得到原数据。
+ *
+ * 请设计一个算法来实现二叉树的序列化与反序列化。这里不限定你的序列 / 反序列化算法执行逻辑,你只需要保证一个二叉树可以被序列化为一个字符串并且将这个字符串反序列化为原始的树结构。
+ *
+ * 示例:
+ *
+ * 你可以将以下二叉树:
+ *
+ * 1
+ * / \
+ * 2 3
+ * / \
+ * 4 5
+ *
+ * 序列化为 "[1,2,3,null,null,4,5]"
+ * 提示: 这与 LeetCode 目前使用的方式一致,详情请参阅 LeetCode 序列化二叉树的格式。你并非必须采取这种方式,你也可以采用其他的方法解决这个问题。
+ *
+ * 说明: 不要使用类的成员 / 全局 / 静态变量来存储状态,你的序列化和反序列化算法应该是无状态的。
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/serialize-and-deserialize-binary-tree
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _297_Codec {
+
+ public static void main(String[] args) {
+ _297_Codec codec = new _297_Codec();
+ TreeNode root = new TreeNode(1);
+ root.left = new TreeNode(2);
+ root.right = new TreeNode(3);
+ root.right.left = new TreeNode(4);
+ root.right.right = new TreeNode(5);
+ String serialize = codec.serialize(root);
+ System.out.println(serialize);
+ TreeNode deserialize = codec.deserialize(serialize);
+ Util.printTree(deserialize);
+ }
+
+ // Encodes a tree to a single string.
+
+ /**
+ * 按层次遍历,序列化格式:1 2 3 null null 4 5 null null null null
+ * 借助队列实现树的BFS
+ * @param root
+ * @return
+ */
+ public String serialize(TreeNode root) {
+ StringBuilder builder = new StringBuilder();
+ Queue
+ * 给定两个整数,被除数 dividend 和除数 divisor。将两数相除,要求不使用乘法、除法和 mod 运算符。
+ *
+ * 返回被除数 dividend 除以除数 divisor 得到的商。
+ *
+ * 示例 1:
+ *
+ * 输入: dividend = 10, divisor = 3
+ * 输出: 3
+ * 示例 2:
+ *
+ * 输入: dividend = 7, divisor = -3
+ * 输出: -2
+ * 说明:
+ *
+ * 被除数和除数均为 32 位有符号整数。
+ * 除数不为 0。
+ * 假设我们的环境只能存储 32 位有符号整数,其数值范围是 [−2^31, 2^31 − 1]。本题中,如果除法结果溢出,则返回 2^31 − 1。
+ *
+ * @see divide-two-integers
+ */
+public class _29_divide {
+
+ public static void main(String[] args) {
+ _29_divide divide = new _29_divide();
+ System.out.println(divide.divide2(10, 3));
+ System.out.println(divide.divide2(7, -3));
+ System.out.println(divide.divide2(-7, -3));
+ System.out.println(divide.divide2(-2147483648, -1));
+ System.out.println(divide.divide2(-2, 2));
+ System.out.println(divide.divide2(2, 2));
+ System.out.println(divide.divide2(Integer.MAX_VALUE, 2));
+ }
+
+ /**
+ * 解法二
+ * 除法的本质起始是看除数中包含多少个被除数,可以利用乘法或者位移使被除数不断变大,直到大于除数
+ * 由于题目中不允许使用乘法,所以考虑用位移的方式进行计算 <<1 <==> *2
+ * 1.divisor << 1,直至 > dividend,得到cnt
+ * 2.dividend = dividend-divisor<<(cnt-1)
+ * 3.重复第一步拿到最终结果
+ * 要注意正负值和边界情况
+ * 时间复杂度O(logn)
+ *
+ * @param dividend
+ * @param divisor
+ * @return
+ */
+ public int divide2(int dividend, int divisor) {
+ if (dividend == 0) return 0;
+ if (divisor == 1) return dividend;
+ if (divisor == -1) {
+ if (dividend == Integer.MIN_VALUE) {
+ return Integer.MAX_VALUE;
+ }
+ if (dividend == Integer.MAX_VALUE) {
+ return Integer.MIN_VALUE;
+ }
+ return -dividend;
+ }
+ int ret = 0;
+ long absDividend = Math.abs((long)dividend);
+ long absDivisor = Math.abs((long)divisor);
+ while (absDividend >= absDivisor) {
+ int cnt = 1;
+ while ((absDivisor << cnt) <= absDividend)
+ cnt++;
+ ret += 1 << (cnt - 1);
+ absDividend -= absDivisor << (cnt - 1);
+ }
+ return ((dividend ^ divisor) < 0) ? -ret : ret;
+ }
+
+ /**
+ * 解题思路:
+ * 1、不使用乘法、除法和 mod 运算符,那就只能使用加减法了
+ * 2、for循环不断相减得到结果
+ * 要注意正负值和边界情况
+ *
+ * 此种解法,对于超级大的dividend和超级小的divisor的话,耗时会很长=>O(n)
+ * 见解法二 {@link _29_divide#divide2(int, int)}
+ *
+ * @param dividend
+ * @param divisor
+ * @return
+ */
+ public int divide(int dividend, int divisor) {
+ if (divisor == 1) {
+ return dividend;
+ }
+ if (divisor == -1) {
+ if (dividend == Integer.MIN_VALUE) {
+ return Integer.MAX_VALUE;
+ }
+ if (dividend == Integer.MAX_VALUE) {
+ return Integer.MIN_VALUE;
+ }
+ return -dividend;
+ }
+
+ int ret = 0;
+ //异或
+ int xor = dividend ^ divisor;
+ if (xor == 0) {
+ return 1;
+ } else if (xor > 0) {
+ //相同运算符
+ while ((dividend ^ divisor) > 0) {
+ dividend -= divisor;
+ if ((dividend ^ divisor) >= 0 || dividend == 0) {
+ ret++;
+ }
+ }
+ } else {
+ //不同运算符
+ while ((dividend ^ divisor) < 0) {
+ dividend += divisor;
+ if ((dividend ^ divisor) <= 0 || dividend == 0) {
+ ret--;
+ }
+ }
+ }
+
+ return ret;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_301_removeInvalidParentheses.java b/src/pp/arithmetic/leetcode/_301_removeInvalidParentheses.java
new file mode 100644
index 0000000..4d26596
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_301_removeInvalidParentheses.java
@@ -0,0 +1,124 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+
+import java.util.*;
+
+/**
+ * Created by wangpeng on 2019-08-17.
+ * 301. 删除无效的括号
+ *
+ * 删除最小数量的无效括号,使得输入的字符串有效,返回所有可能的结果。
+ *
+ * 说明: 输入可能包含了除 ( 和 ) 以外的字符。
+ *
+ * 示例 1:
+ *
+ * 输入: "()())()"
+ * 输出: ["()()()", "(())()"]
+ * 示例 2:
+ *
+ * 输入: "(a)())()"
+ * 输出: ["(a)()()", "(a())()"]
+ * 示例 3:
+ *
+ * 输入: ")("
+ * 输出: [""]
+ *
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/remove-invalid-parentheses
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _301_removeInvalidParentheses {
+
+ public static void main(String[] args) {
+ _301_removeInvalidParentheses removeInvalidParentheses = new _301_removeInvalidParentheses();
+ List
+ * 给定一个整数数组,其中第 i 个元素代表了第 i 天的股票价格 。
+ *
+ * 设计一个算法计算出最大利润。在满足以下约束条件下,你可以尽可能地完成更多的交易(多次买卖一支股票):
+ *
+ * 你不能同时参与多笔交易(你必须在再次购买前出售掉之前的股票)。
+ * 卖出股票后,你无法在第二天买入股票 (即冷冻期为 1 天)。
+ * 示例:
+ *
+ * 输入: [1,2,3,0,2]
+ * 输出: 3
+ * 解释: 对应的交易状态为: [买入, 卖出, 冷冻期, 买入, 卖出]
+ *
+ * @see best-time-to-buy-and-sell-stock-with-cooldown
+ */
+public class _309_maxProfit {
+ public static void main(String[] args) {
+ _309_maxProfit maxProfit = new _309_maxProfit();
+ System.out.println(maxProfit.maxProfit(new int[]{1, 2, 3, 0, 2}));
+ System.out.println(maxProfit.maxProfit2(new int[]{1, 2, 3, 0, 2}));
+ }
+
+ /**
+ * 解题思路(动态规划):
+ * 可以将问题拆解为前i天获利最大,如果股票在手上没有卖出去,获利应该算亏本吧?
+ * 第i+1天的获利最大情况:第i天买入,第i-1天买入...第1天买入,求出个最大值
+ * 假设第i天买入,此时上一次买入时间必须是i-2天,可以用此次的获利+dp[i-2]得到总获利值(注意i>=2)
+ * 得出状态转移方程
+ * if (j >= 2) {
+ * dp[i] = Math.max(diffPrice + dp[j - 2], dp[i]);
+ * } else {
+ * dp[i] = Math.max(diffPrice, dp[i]);
+ * }
+ * 提交结果:
+ * 执行用时 : 52 ms, 在Best Time to Buy and Sell Stock with Cooldown的Java提交中击败了5.67% 的用户
+ * 内存消耗 : 34.5 MB, 在Best Time to Buy and Sell Stock with Cooldown的Java提交中击败了87.95% 的用户
+ * 执行耗时并不是很理想,思考耗时在哪?
+ * 综合分析,整体时间复杂度在O(n^2)级别,待优化{@link _309_maxProfit#maxProfit(int[])}
+ *
+ * @param prices
+ * @return
+ */
+ public int maxProfit(int[] prices) {
+ if (prices.length <= 1) return 0;
+ if (prices.length == 2) return Math.max(prices[1] - prices[0], 0);
+
+ int[] dp = new int[prices.length];
+ dp[0] = 0;
+ for (int i = 1; i < prices.length; i++) {
+ //当前不执行任何操作
+ dp[i] = dp[i - 1];
+ //当前执行卖出操作
+ for (int j = i - 1; j >= 0; j--) {
+ int diffPrice = prices[i] - prices[j];
+ if (diffPrice <= 0) continue;
+ //如果j买入的话,上一次卖出获利必须是j-2日
+ if (j >= 2) {
+ dp[i] = Math.max(diffPrice + dp[j - 2], dp[i]);
+ } else {
+ dp[i] = Math.max(diffPrice, dp[i]);
+ }
+ }
+ }
+
+ return dp[prices.length - 1];
+ }
+
+ /**
+ * 解题二:
+ * 优化{@link _309_maxProfit#maxProfit(int[])}中的问题
+ * 使用两个数组进行存储,一个是持有成本,一个是卖出获利
+ *
+ * @param prices
+ * @return
+ */
+ public int maxProfit2(int[] prices) {
+ if (prices == null || prices.length <= 1) {
+ return 0;
+ }
+ //持有成本
+ int[] hold = new int[prices.length];
+ //卖出获利
+ int[] profit = new int[prices.length];
+ hold[0] = -prices[0];
+ for (int i = 1; i < prices.length; i++) {
+ if (i == 1) {
+ hold[i] = Math.max(hold[i - 1], -prices[1]);
+ } else {
+ hold[i] = Math.max(hold[i - 1], profit[i - 2] - prices[i]);
+ }
+ //当前不卖出,或者卖出,取最大值
+ profit[i] = Math.max(profit[i - 1], hold[i - 1] + prices[i]);
+ }
+ return profit[prices.length - 1];
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_30_findSubstring.java b/src/pp/arithmetic/leetcode/_30_findSubstring.java
new file mode 100644
index 0000000..ac459a4
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_30_findSubstring.java
@@ -0,0 +1,157 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+
+/**
+ * Created by wangpeng on 2019-04-17.
+ * 30. 串联所有单词的子串
+ *
+ * 给定一个字符串 s 和一些长度相同的单词 words。找出 s 中恰好可以由 words 中所有单词串联形成的子串的起始位置。
+ *
+ * 注意子串要与 words 中的单词完全匹配,中间不能有其他字符,但不需要考虑 words 中单词串联的顺序。
+ *
+ *
+ *
+ * 示例 1:
+ *
+ * 输入:
+ * s = "barfoothefoobarman",
+ * words = ["foo","bar"]
+ * 输出:[0,9]
+ * 解释:
+ * 从索引 0 和 9 开始的子串分别是 "barfoor" 和 "foobar" 。
+ * 输出的顺序不重要, [9,0] 也是有效答案。
+ * 示例 2:
+ *
+ * 输入:
+ * s = "wordgoodgoodgoodbestword",
+ * words = ["word","good","best","word"]
+ * 输出:[]
+ *
+ * @see substring-with-concatenation-of-all-words
+ */
+public class _30_findSubstring {
+
+ public static void main(String[] args) {
+ _30_findSubstring findSubstring = new _30_findSubstring();
+ List
+ * 执行用时 : 242 ms, 在Substring with Concatenation of All Words的Java提交中击败了45.27% 的用户
+ * 内存消耗 : 63.2 MB, 在Substring with Concatenation of All Words的Java提交中击败了33.24% 的用户
+ *
+ * 通过提交leetcode来看,效率并不是很高,分析下时间复杂度在O(n^2)
+ *
+ * 优化方案 {@link _30_findSubstring#findSubstring2(String, String[])}
+ *
+ * @param s
+ * @param words
+ * @return
+ */
+ public List
+ * 有 n 个气球,编号为0 到 n-1,每个气球上都标有一个数字,这些数字存在数组 nums 中。
+ *
+ * 现在要求你戳破所有的气球。每当你戳破一个气球 i 时,你可以获得 nums[left] * nums[i] * nums[right] 个硬币。 这里的 left 和 right 代表和 i 相邻的两个气球的序号。注意当你戳破了气球 i 后,气球 left 和气球 right 就变成了相邻的气球。
+ *
+ * 求所能获得硬币的最大数量。
+ *
+ * 说明:
+ *
+ * 你可以假设 nums[-1] = nums[n] = 1,但注意它们不是真实存在的所以并不能被戳破。
+ * 0 ≤ n ≤ 500, 0 ≤ nums[i] ≤ 100
+ * 示例:
+ *
+ * 输入: [3,1,5,8]
+ * 输出: 167
+ * 解释: nums = [3,1,5,8] --> [3,5,8] --> [3,8] --> [8] --> []
+ * coins = 3*1*5 + 3*5*8 + 1*3*8 + 1*8*1 = 167
+ *
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/burst-balloons
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _312_maxCoins {
+ public static void main(String[] args) {
+ _312_maxCoins maxCoins = new _312_maxCoins();
+ System.out.println(maxCoins.maxCoins(new int[]{3, 1, 5, 8}));
+ }
+
+ /**
+ * 解题思路:如何使最终结果最大化?动态规划保存结果
+ * 1.将问题拆解成求i->j的最大值,最大的i=0,j=n
+ * 2.从i->j中找一个k,拆分求解,i->k,k,k->j三个值之和的最大值
+ * 3.i->k和k->j代表k的左边和右边全部戳破求解的最大值
+ * 4.左右全部戳破后,k的值为num[i]*num[k]*num[j]
+ * 5.动态转移方程:dp[i][j]=Math.max(dp[i][j],dp[i][k]+dp[k][j]+num[i]*num[k]*num[j]);
+ *
+ * @param nums
+ * @return
+ */
+ public int maxCoins(int[] nums) {
+ //dp[i][j]代表i->j的最大值
+ int[][] dp = new int[nums.length + 2][nums.length + 2];
+ //左右+1方便操作。 nums[-1] = nums[n] = 1
+ int[] newNums = new int[nums.length + 2];
+ for (int i = 1; i < newNums.length - 1; i++) {
+ newNums[i] = nums[i - 1];
+ }
+ newNums[0] = 1;
+ newNums[newNums.length - 1] = 1;
+ //从2开始,保证最少3个
+ for (int j = 2; j < newNums.length; j++) {
+ //遍历所有的可能性,0-2...0-n,1-3...1-n,...
+ for (int i = 0; i < newNums.length - j; i++) {
+ for (int k = i + 1; k < i + j; k++) {
+ dp[i][i + j] = Math.max(dp[i][i + j], dp[i][k] + dp[k][i + j] + newNums[i] * newNums[k] * newNums[i + j]);
+ }
+ }
+ }
+ return dp[0][newNums.length - 1];
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_31_nextPermutation.java b/src/pp/arithmetic/leetcode/_31_nextPermutation.java
new file mode 100644
index 0000000..68a6e1c
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_31_nextPermutation.java
@@ -0,0 +1,82 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+
+import java.util.Arrays;
+
+/**
+ * Created by wangpeng on 2019-04-18.
+ * 31. 下一个排列
+ *
+ * 实现获取下一个排列的函数,算法需要将给定数字序列重新排列成字典序中下一个更大的排列。
+ *
+ * 如果不存在下一个更大的排列,则将数字重新排列成最小的排列(即升序排列)。
+ *
+ * 必须原地修改,只允许使用额外常数空间。
+ *
+ * 以下是一些例子,输入位于左侧列,其相应输出位于右侧列。
+ * 1,2,3 → 1,3,2
+ * 3,2,1 → 1,2,3
+ * 1,1,5 → 1,5,1
+ *
+ * @see next-permutation
+ */
+public class _31_nextPermutation {
+
+ public static void main(String[] args) {
+ _31_nextPermutation permutation = new _31_nextPermutation();
+ int[] nums = new int[]{1, 2, 3, 4, 7, 5, 6};
+ Util.printArray(nums);
+ permutation.nextPermutation(nums);
+ Util.printArray(nums);
+ permutation.nextPermutation(nums);
+ Util.printArray(nums);
+ }
+
+ /**
+ * 解题思路:
+ * 必须原地修改,代表只能数组内替换,而不能借助新的数组
+ * 如:1 2 4 5 3
+ * 1、从尾部开始遍历,找到刚开始递减的数字 4
+ * 2、从 4 后面找比4最小的数字 5
+ * 3、将 4 和 5 替换
+ * 4、后续数组升序排列 1 2 5 3 4
+ *
+ * @param nums
+ */
+ public void nextPermutation(int[] nums) {
+ if (nums.length <= 1) {
+ return;
+ }
+ int pNum = nums[nums.length - 1];
+ //找到开始递减的index
+ int cIndex = -1;
+ for (int i = nums.length - 2; i >= 0; i--) {
+ int cNum = nums[i];
+ if (cNum < pNum) {
+ cIndex = i;
+ break;
+ }
+ pNum = cNum;
+ }
+ if (cIndex == -1) {
+ //没有找到,全数组重新升序排列
+ Arrays.sort(nums);
+ return;
+ }
+ //找满足条件的替换值
+ int rIndex = cIndex + 1;
+ for (int i = cIndex + 1; i < nums.length; i++) {
+ if (nums[i] <= nums[cIndex]) {
+ break;
+ }
+ rIndex = i;
+ }
+ //替换
+ int temp = nums[cIndex];
+ nums[cIndex] = nums[rIndex];
+ nums[rIndex] = temp;
+ //剩下的重新排序
+ Arrays.sort(nums, cIndex + 1, nums.length);
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_32_longestValidParentheses.java b/src/pp/arithmetic/leetcode/_32_longestValidParentheses.java
new file mode 100644
index 0000000..c790749
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_32_longestValidParentheses.java
@@ -0,0 +1,119 @@
+package pp.arithmetic.leetcode;
+
+import java.util.Stack;
+
+/**
+ * Created by wangpeng on 2019-04-12.
+ * 32. 最长有效括号
+ *
+ * 给定一个只包含 '(' 和 ')' 的字符串,找出最长的包含有效括号的子串的长度。
+ *
+ * 示例 1:
+ *
+ * 输入: "(()"
+ * 输出: 2
+ * 解释: 最长有效括号子串为 "()"
+ * 示例 2:
+ *
+ * 输入: ")()())"
+ * 输出: 4
+ * 解释: 最长有效括号子串为 "()()"
+ *
+ * @see longest-valid-parentheses
+ */
+public class _32_longestValidParentheses {
+
+ public static void main(String[] args) {
+ _32_longestValidParentheses parentheses = new _32_longestValidParentheses();
+ System.out.println(parentheses.longestValidParentheses("(()"));
+ System.out.println(parentheses.longestValidParentheses(")()())"));
+ System.out.println(parentheses.longestValidParentheses("()()"));
+ System.out.println(parentheses.longestValidParentheses2(")()())()()("));
+ }
+
+ /**
+ * 解题思路:
+ * 参考 {@link _20_isValid#isValid(String)},但和其不同的是,求有效长度
+ * 难度在于,你不知道什么时候才是有效长度结束,每个括号都有可能是后续某个括号的匹配
+ * 1、使用Stack存储,(则入栈,)则在栈中进行寻找是否有对于的(
+ * 2、找到对应的(则将(出栈,将数字2入栈
+ * 3、如在找(的过程中遇到了数字,就将其累加到最大值中并使其出栈
+ *
+ * 执行用时 : 22 ms, 在Longest Valid Parentheses的Java提交中击败了41.51% 的用户
+ * 内存消耗 : 36.9 MB, 在Longest Valid Parentheses的Java提交中击败了86.21% 的用户
+ *
+ * 提交结果并不是很棒,看话题关联有动态规划,于是再考虑一个动态规划的计算
+ * 解法二 {@link _32_longestValidParentheses#longestValidParentheses2(String)}
+ *
+ * @param s
+ * @return
+ */
+ public int longestValidParentheses(String s) {
+ int retCount = 0;
+ Stack stack = new Stack();
+ int count;
+ for (int i = 0; i < s.length(); i++) {
+ char c = s.charAt(i);
+ if (c == '(') {
+ stack.push(c);
+ } else {
+ count = 0;
+ boolean isMatch = false;
+ while (!stack.isEmpty()) {
+ Object peek = stack.peek();
+ if (peek instanceof Integer) {
+ count += (Integer) peek;
+ stack.pop();
+ } else {
+ char peekC = (char) peek;
+ if (peekC == ')' || isMatch) break;
+ isMatch = true;
+ count += 2;
+ stack.pop();
+ }
+ }
+ retCount = Math.max(retCount, count);
+ stack.push(count);
+ if (!isMatch) {
+ stack.push(c);
+ }
+ }
+ }
+ return retCount;
+ }
+
+ /**
+ * 解法二:
+ * 动态规划四步走
+ * - 确认原问题与子问题: 原问题为求s中最长有效括号,子问题可拆解为前i个中最长有效括号。
+ * - 确认状态: 本题的动态规划状态单一,第i个状态即为前i个字符串中最长括号数。
+ * - 确认边界状态的值: dp[1]=0,从1开始
+ * - 确定状态转移方程: 对于(())适用dp[i] = dp[i - 1] + 2;对于()()适用 dp[i] += dp[i - dp[i]];
+ * 两者结合一起判断,防止()()(())这种情况
+ *
+ * 执行用时 : 4 ms, 在Longest Valid Parentheses的Java提交中击败了98.68% 的用户
+ * 内存消耗 : 37.6 MB, 在Longest Valid Parentheses的Java提交中击败了82.01% 的用户
+ *
+ * @param s
+ * @return
+ */
+ public int longestValidParentheses2(String s) {
+ if (s == null || s.equals(""))
+ return 0;
+ int maxlen = 0;
+ //当前对于的最大的连续括号数
+ int[] dp = new int[s.length()];
+ for (int i = 1; i < s.length(); i++) {
+ if (s.charAt(i) == ')') {
+ if (i - dp[i - 1] - 1 >= 0 && s.charAt(i - dp[i - 1] - 1) == '(') {
+ dp[i] = dp[i - 1] + 2;
+ }
+ if (i - dp[i] >= 0 && dp[i - dp[i]] > 0) {
+ dp[i] += dp[i - dp[i]];
+ }
+ maxlen = dp[i] > maxlen ? dp[i] : maxlen;
+ }
+ }
+ return maxlen;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_337_rob.java b/src/pp/arithmetic/leetcode/_337_rob.java
new file mode 100644
index 0000000..ad585d2
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_337_rob.java
@@ -0,0 +1,94 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.model.TreeNode;
+
+/**
+ * Created by wangpeng on 2019-08-21.
+ * 337. 打家劫舍 III
+ *
+ * 在上次打劫完一条街道之后和一圈房屋后,小偷又发现了一个新的可行窃的地区。这个地区只有一个入口,我们称之为“根”。 除了“根”之外,每栋房子有且只有一个“父“房子与之相连。一番侦察之后,聪明的小偷意识到“这个地方的所有房屋的排列类似于一棵二叉树”。 如果两个直接相连的房子在同一天晚上被打劫,房屋将自动报警。
+ *
+ * 计算在不触动警报的情况下,小偷一晚能够盗取的最高金额。
+ *
+ * 示例 1:
+ *
+ * 输入: [3,2,3,null,3,null,1]
+ *
+ * 3
+ * / \
+ * 2 3
+ * \ \
+ * 3 1
+ *
+ * 输出: 7
+ * 解释: 小偷一晚能够盗取的最高金额 = 3 + 3 + 1 = 7.
+ * 示例 2:
+ *
+ * 输入: [3,4,5,1,3,null,1]
+ *
+ * 3
+ * / \
+ * 4 5
+ * / \ \
+ * 1 3 1
+ *
+ * 输出: 9
+ * 解释: 小偷一晚能够盗取的最高金额 = 4 + 5 = 9.
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/house-robber-iii
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _337_rob {
+
+ public static void main(String[] args) {
+ _337_rob rob = new _337_rob();
+ TreeNode treeNode = new TreeNode(3);
+ treeNode.left = new TreeNode(4);
+ treeNode.right = new TreeNode(5);
+ treeNode.left.left = new TreeNode(1);
+ treeNode.left.right = new TreeNode(3);
+ treeNode.right.right = new TreeNode(1);
+ System.out.println(rob.rob(treeNode));
+ //[4,1,null,2,null,3]
+ TreeNode r1 = new TreeNode(4);
+ r1.left = new TreeNode(1);
+ r1.left.left = new TreeNode(2);
+ r1.left.left.left = new TreeNode(3);
+ System.out.println(rob.rob(r1));
+ }
+
+ /**
+ * 按题意,不能相连=根节点和左右子树选择只能二选一,每个节点都有选和不选,总共组合个数2^n次,全部循环明显不合适
+ * 按经验,树的解题思路就是DFS递归
+ * 1.求解左右子树的最大金额(左右子树需要求解2遍,选择了根节点和没有选择根节点的)
+ * 2.选择根节点的最大值max1=max(左)+max(右)+跟,没有选择根节点的最大值max2=max(左)+max(右)
+ * 3.比较max1和max2,求出最大值
+ *
+ * @param root
+ * @return
+ */
+ public int rob(TreeNode root) {
+ int[] max = doRob(root);
+ return Math.max(max[0], max[1]);
+ }
+
+ /**
+ * 0代表不含根节点,1代表含根节点
+ *
+ * @param root
+ * @return
+ */
+ private int[] doRob(TreeNode root) {
+ int[] res = new int[2];
+ if (root == null)
+ return res;
+ int[] left = doRob(root.left);
+ int[] right = doRob(root.right);
+ //不包含根节点,最大值为两个子树的最大值之和
+ res[0] = Math.max(left[0], left[1]) + Math.max(right[0], right[1]);
+ //包含根节点,最大值为两个子树不包含根节点的最大值加上根节点的值
+ res[1] = left[0] + right[0] + root.val;
+ return res;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_338_countBits.java b/src/pp/arithmetic/leetcode/_338_countBits.java
new file mode 100644
index 0000000..cc33ee2
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_338_countBits.java
@@ -0,0 +1,72 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+
+/**
+ * Created by wangpeng on 2019-05-13.
+ * 338. 比特位计数
+ *
+ * 给定一个非负整数 num。对于 0 ≤ i ≤ num 范围中的每个数字 i ,计算其二进制数中的 1 的数目并将它们作为数组返回。
+ *
+ * 示例 1:
+ *
+ * 输入: 2
+ * 输出: [0,1,1]
+ * 示例 2:
+ *
+ * 输入: 5
+ * 输出: [0,1,1,2,1,2]
+ * 进阶:
+ *
+ * 给出时间复杂度为O(n*sizeof(integer))的解答非常容易。但你可以在线性时间O(n)内用一趟扫描做到吗?
+ * 要求算法的空间复杂度为O(n)。
+ * 你能进一步完善解法吗?要求在C++或任何其他语言中不使用任何内置函数(如 C++ 中的 __builtin_popcount)来执行此操作。
+ *
+ * @see counting-bits
+ */
+public class _338_countBits {
+ public static void main(String[] args) {
+ _338_countBits countBits = new _338_countBits();
+ Util.printArray(countBits.countBits(2));
+ Util.printArray(countBits.countBits(5));
+ }
+
+ /**
+ * 题目已经强调了需要O(n)的复杂度,只能遍历一遍,可以考虑动态规划
+ * 根据题目意思,先手动画一下数字和2进制的具体映射关系
+ * 数字 0 1 2 3 4 5 6 7 8
+ * 二进 0 1 10 11 100 101 110 111 1000
+ * 1个数 0 1 1 2 1 2 2 3 1
+ * 根据递推效果,看着好像没有什么规律
+ * 但是仔细思考下,10进制转2进制必须要除以2,有些能整除,有些不能整除
+ * 不能整除的3的1个数=3/1=数字1的1个数+1
+ * 能整除的4的的1个数=4/2=数字2的1个数
+ * 拿其他数字验证后发现的确是这个规律,得到动态规划状态转移方程:
+ * int d = i / 2;
+ * int m = i % 2;
+ * if (m == 0) {
+ * dp[i] = dp[d];
+ * } else {
+ * dp[i] = dp[d] + 1;
+ * }
+ *
+ * @param num
+ * @return
+ */
+ public int[] countBits(int num) {
+ if (num < 0) return new int[0];
+ int[] dp = new int[num + 1];
+ dp[0] = 0;
+ for (int i = 1; i <= num; i++) {
+ int d = i / 2;
+ int m = i % 2;
+ if (m == 0) {
+ dp[i] = dp[d];
+ } else {
+ dp[i] = dp[d] + 1;
+ }
+ }
+
+ return dp;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_343_integerBreak.java b/src/pp/arithmetic/leetcode/_343_integerBreak.java
new file mode 100644
index 0000000..50ec972
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_343_integerBreak.java
@@ -0,0 +1,61 @@
+package pp.arithmetic.leetcode;
+
+/**
+ * Created by wangpeng on 2019-05-13.
+ * 343. 整数拆分
+ *
+ * 给定一个正整数 n,将其拆分为至少两个正整数的和,并使这些整数的乘积最大化。 返回你可以获得的最大乘积。
+ *
+ * 示例 1:
+ *
+ * 输入: 2
+ * 输出: 1
+ * 解释: 2 = 1 + 1, 1 × 1 = 1。
+ * 示例 2:
+ *
+ * 输入: 10
+ * 输出: 36
+ * 解释: 10 = 3 + 3 + 4, 3 × 3 × 4 = 36。
+ * 说明: 你可以假设 n 不小于 2 且不大于 58。
+ *
+ * @see integer-break
+ */
+public class _343_integerBreak {
+ public static void main(String[] args) {
+ _343_integerBreak integerBreak = new _343_integerBreak();
+ System.out.println(integerBreak.integerBreak(8));
+ System.out.println(integerBreak.integerBreak(10));
+ System.out.println(integerBreak.integerBreak(14));
+ }
+
+ /**
+ * 解题思路:
+ * 手动模拟了从2-10的最大乘积数字拆解,发现了一个现象:
+ * 对于数字n,n一直除以2到1为止,得到的数字就是最大的乘积,举例如下:
+ * 数字n 2 3 4 5 6 7 8 9 10
+ * 乘积 1,1 1,2 2,2 2,3 3,3 3,4(2,2) 4(2,2),4(2,2) 4,5(2,3) 5(2,3),5(2,3)
+ * 发现到了后面的最大乘积可以利用之前的计算好的结果,从而得出动态规划转移方程
+ * dp[i]=dp[i/2]*dp[i-i/2](i>3)
+ * 上面有问题,例如8的最大值不是除以2得到4*4=16,而是3*2*3=18,所以得双重循环取所有情况的最大值
+ * for (int j = 1; j <= i / 2; j++) {
+ * dp[i] = Math.max(dp[i], dp[j] * dp[i - j]);
+ * }
+ *
+ * @param n
+ * @return
+ */
+ public int integerBreak(int n) {
+ if (n <= 3) return n - 1;
+ int[] dp = new int[n + 1];
+ //初始化,1,2,3特殊处理
+ dp[1] = 1;
+ dp[2] = 2;
+ dp[3] = 3;
+ for (int i = 4; i <= n; i++) {
+ for (int j = 1; j <= i / 2; j++) {
+ dp[i] = Math.max(dp[i], dp[j] * dp[i - j]);
+ }
+ }
+ return dp[n];
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_347_topKFrequent.java b/src/pp/arithmetic/leetcode/_347_topKFrequent.java
new file mode 100644
index 0000000..993b6c5
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_347_topKFrequent.java
@@ -0,0 +1,124 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+
+import java.util.*;
+
+/**
+ * Created by wangpeng on 2019-08-22.
+ * 347. 前 K 个高频元素
+ *
+ * 给定一个非空的整数数组,返回其中出现频率前 k 高的元素。
+ *
+ * 示例 1:
+ *
+ * 输入: nums = [1,1,1,2,2,3], k = 2
+ * 输出: [1,2]
+ * 示例 2:
+ *
+ * 输入: nums = [1], k = 1
+ * 输出: [1]
+ * 说明:
+ *
+ * 你可以假设给定的 k 总是合理的,且 1 ≤ k ≤ 数组中不相同的元素的个数。
+ * 你的算法的时间复杂度必须优于 O(n log n) , n 是数组的大小。
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/top-k-frequent-elements
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _347_topKFrequent {
+
+ public static void main(String[] args) {
+ _347_topKFrequent topKFrequent = new _347_topKFrequent();
+ Util.printList(topKFrequent.topKFrequent(new int[]{1, 2, 1, 2, 1, 4}, 2));
+ Util.printList(topKFrequent.topKFrequent(new int[]{4, 1, -1, 2, -1, 2, 3}, 2));
+ Util.printList(topKFrequent.topKFrequent1(new int[]{1, 2, 1, 2, 1, 4}, 2));
+ Util.printList(topKFrequent.topKFrequent1(new int[]{4, 1, -1, 2, -1, 2, 3}, 2));
+ }
+
+ /**
+ * 解题思路:
+ * 1.遍历count使用HashMap进行保存
+ * 2.从遍历的count中找到最K大的数字,此时使用了PriorityQueue进行保存,队列顶部就是最小的
+ * 3.将PriorityQueue结果转换为List返回
+ *
+ * 执行用时 :104 ms, 在所有 Java 提交中击败了16.20%的用户
+ * 内存消耗 :45.8 MB, 在所有 Java 提交中击败了57.61%的用户
+ *
+ * 时间复杂度O(NLogN)
+ *
+ * 更优解法:{@link _347_topKFrequent#topKFrequent1(int[], int)}
+ *
+ * @param nums
+ * @param k
+ * @return
+ */
+ public List
+ * 报数序列是一个整数序列,按照其中的整数的顺序进行报数,得到下一个数。其前五项如下:
+ *
+ * 1. 1
+ * 2. 11
+ * 3. 21
+ * 4. 1211
+ * 5. 111221
+ * 1 被读作 "one 1" ("一个一") , 即 11。
+ * 11 被读作 "two 1s" ("两个一"), 即 21。
+ * 21 被读作 "one 2", "one 1" ("一个二" , "一个一") , 即 1211。
+ *
+ * 给定一个正整数 n(1 ≤ n ≤ 30),输出报数序列的第 n 项。
+ *
+ * 注意:整数顺序将表示为一个字符串。
+ *
+ *
+ *
+ * 示例 1:
+ *
+ * 输入: 1
+ * 输出: "1"
+ * 示例 2:
+ *
+ * 输入: 4
+ * 输出: "1211"
+ *
+ * @see count-and-say
+ */
+public class _38_countAndSay {
+
+ public static void main(String[] args) {
+ _38_countAndSay countAndSay = new _38_countAndSay();
+ System.out.println(countAndSay.countAndSay(4));
+ System.out.println(countAndSay.countAndSay(5));
+ System.out.println(countAndSay.countAndSay(6));
+ }
+
+ /**
+ * 解题思路:
+ * 本题的难点在于:报数的概念理解,至少我从题意中没有很清晰的理解,但是感觉像是个递推式
+ * 从4->5分析,将4个每一位拆开看(个数+数字),4=1211 => 1=11,2=12,11=21,所以5=111221
+ * 所以解题用循环,从1->n可求解出来
+ *
+ * @param n
+ * @return
+ */
+ public String countAndSay(int n) {
+ String str = "1";
+ for (int i = 2; i <= n; i++) {
+ StringBuilder builder = new StringBuilder();
+ char pre = str.charAt(0);
+ int count = 1;
+ for (int j = 1; j < str.length(); j++) {
+ char c = str.charAt(j);
+ if (c == pre) {
+ count++;
+ } else {
+ builder.append(count).append(pre);
+ pre = c;
+ count = 1;
+ }
+ }
+ builder.append(count).append(pre);
+ str = builder.toString();
+ }
+
+ return str;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_394_decodeString.java b/src/pp/arithmetic/leetcode/_394_decodeString.java
new file mode 100644
index 0000000..b044e0d
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_394_decodeString.java
@@ -0,0 +1,80 @@
+package pp.arithmetic.leetcode;
+
+import java.util.LinkedList;
+
+/**
+ * Created by wangpeng on 2019-08-23.
+ * 394. 字符串解码
+ *
+ * 给定一个经过编码的字符串,返回它解码后的字符串。
+ *
+ * 编码规则为: k[encoded_string],表示其中方括号内部的 encoded_string 正好重复 k 次。注意 k 保证为正整数。
+ *
+ * 你可以认为输入字符串总是有效的;输入字符串中没有额外的空格,且输入的方括号总是符合格式要求的。
+ *
+ * 此外,你可以认为原始数据不包含数字,所有的数字只表示重复的次数 k ,例如不会出现像 3a 或 2[4] 的输入。
+ *
+ * 示例:
+ *
+ * s = "3[a]2[bc]", 返回 "aaabcbc".
+ * s = "3[a2[c]]", 返回 "accaccacc".
+ * s = "2[abc]3[cd]ef", 返回 "abcabccdcdcdef".
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/decode-string
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _394_decodeString {
+
+ public static void main(String[] args) {
+ _394_decodeString decodeString = new _394_decodeString();
+ System.out.println(decodeString.decodeString("3[a2[c]]"));
+ System.out.println(decodeString.decodeString("2[abc]3[cd]ef"));
+ }
+
+ /**
+ * 解题思路:
+ * 将decodeStr拆解后会有四种可能:数字、字母、[、]
+ * 使用栈保存遍历的结果,numStack保存数字,stringStack保存字母
+ * 例:3[a2[c]]
+ * 1、遇到数字:计算数字的大小,注意连续数字的情况
+ * 2、遇到左括号:将之前得到的数字入栈,之前得到的字母也入栈,情况数字和字母
+ * 3、遇到字母:累加连续字母
+ * 4、遇到右括号:将数字出栈,将累加字母根据数字翻倍,将字母也出栈,和翻倍字母拼接
+ * 5、循环1-4
+ *
+ * @param s
+ * @return
+ */
+ public String decodeString(String s) {
+ StringBuilder builder = new StringBuilder();
+ LinkedList
+ * 给出方程式 A / B = k, 其中 A 和 B 均为代表字符串的变量, k 是一个浮点型数字。根据已知方程式求解问题,并返回计算结果。如果结果不存在,则返回 -1.0。
+ *
+ * 示例 :
+ * 给定 a / b = 2.0, b / c = 3.0
+ * 问题: a / c = ?, b / a = ?, a / e = ?, a / a = ?, x / x = ?
+ * 返回 [6.0, 0.5, -1.0, 1.0, -1.0 ]
+ *
+ * 输入为: vector
+ * 基于上述例子,输入如下:
+ *
+ * equations(方程式) = [ ["a", "b"], ["b", "c"] ],
+ * values(方程式结果) = [2.0, 3.0],
+ * queries(问题方程式) = [ ["a", "c"], ["b", "a"], ["a", "e"], ["a", "a"], ["x", "x"] ].
+ * 输入总是有效的。你可以假设除法运算中不会出现除数为0的情况,且不存在任何矛盾的结果。
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/evaluate-division
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _399_calcEquation {
+
+ public static void main(String[] args) {
+ _399_calcEquation calcEquation = new _399_calcEquation();
+ List
+ * 给定一个无重复元素的数组 candidates 和一个目标数 target ,找出 candidates 中所有可以使数字和为 target 的组合。
+ *
+ * candidates 中的数字可以无限制重复被选取。
+ *
+ * 说明:
+ *
+ * 所有数字(包括 target)都是正整数。
+ * 解集不能包含重复的组合。
+ * 示例 1:
+ *
+ * 输入: candidates = [2,3,6,7], target = 7,
+ * 所求解集为:
+ * [
+ * [7],
+ * [2,2,3]
+ * ]
+ * 示例 2:
+ *
+ * 输入: candidates = [2,3,5], target = 8,
+ * 所求解集为:
+ * [
+ * [2,2,2,2],
+ * [2,3,3],
+ * [3,5]
+ * ]
+ *
+ * @see combination-sum
+ */
+public class _39_combinationSum {
+
+ public static void main(String[] args) {
+ _39_combinationSum combinationSum = new _39_combinationSum();
+// List
+ * 假设有打乱顺序的一群人站成一个队列。 每个人由一个整数对(h, k)表示,其中h是这个人的身高,k是排在这个人前面且身高大于或等于h的人数。 编写一个算法来重建这个队列。
+ *
+ * 注意:
+ * 总人数少于1100人。
+ *
+ * 示例
+ *
+ * 输入:
+ * [[7,0], [4,4], [7,1], [5,0], [6,1], [5,2]]
+ *
+ * 输出:
+ * [[5,0], [7,0], [5,2], [6,1], [4,4], [7,1]]
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/queue-reconstruction-by-height
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _406_reconstructQueue {
+
+ public static void main(String[] args) {
+ _406_reconstructQueue reconstructQueue = new _406_reconstructQueue();
+ int[][] ints = reconstructQueue.reconstructQueue(new int[][]{
+ {7, 0}, {7, 1}, {6, 1}, {5, 0}, {5, 2}, {4, 4}
+ });
+ for (int i = 0; i < ints.length; i++) {
+ Util.printArray(ints[i]);
+ }
+ }
+
+ /**
+ * 解题思路:先排序再插入
+ * 1.排序规则:按照先H高度降序,K个数升序排序
+ * 2.遍历排序后的数组,根据K插入到K的位置上
+ *
+ * 核心思想:高个子先站好位,矮个子插入到K位置上,前面肯定有K个高个子,矮个子再插到前面也满足K的要求
+ *
+ * @param people
+ * @return
+ */
+ public int[][] reconstructQueue(int[][] people) {
+ // [7,0], [7,1], [6,1], [5,0], [5,2], [4,4]
+ // 再一个一个插入。
+ // [7,0]
+ // [7,0], [7,1]
+ // [7,0], [6,1], [7,1]
+ // [5,0], [7,0], [6,1], [7,1]
+ // [5,0], [7,0], [5,2], [6,1], [7,1]
+ // [5,0], [7,0], [5,2], [6,1], [4,4], [7,1]
+ Arrays.sort(people, (o1, o2) -> o1[0] == o2[0] ? o1[1] - o2[1] : o2[0] - o1[0]);
+
+ LinkedList
+ * 给定一个只包含正整数的非空数组。是否可以将这个数组分割成两个子集,使得两个子集的元素和相等。
+ *
+ * 注意:
+ *
+ * 每个数组中的元素不会超过 100
+ * 数组的大小不会超过 200
+ * 示例 1:
+ *
+ * 输入: [1, 5, 11, 5]
+ *
+ * 输出: true
+ *
+ * 解释: 数组可以分割成 [1, 5, 5] 和 [11].
+ *
+ *
+ * 示例 2:
+ *
+ * 输入: [1, 2, 3, 5]
+ *
+ * 输出: false
+ *
+ * 解释: 数组不能分割成两个元素和相等的子集.
+ *
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/partition-equal-subset-sum
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _416_canPartition {
+
+ public static void main(String[] args) {
+ _416_canPartition canPartition = new _416_canPartition();
+ System.out.println(canPartition.canPartition(new int[]{1, 5, 11, 5}));
+ System.out.println(canPartition.canPartition(new int[]{1, 3, 2, 4, 4,1}));
+ }
+
+ /**
+ * 解题思路:
+ * 1、对数组进行求和,如总和为奇数则不可能存在相等的两个集合
+ * 2、找到求和为总和一半的集合,则满足拆分
+ * 3、对于已存在得数组中求出满足条件的总数,可以将问题拆解成0-1背包问题,转换为动态规划求解
+ * 4、对于dp[i][j]代表,0-i中找出总和为j的集合,那么对于nums[i]来说可以选择(nums[i]
+ * 给定一个未排序的整数数组,找出其中没有出现的最小的正整数。
+ *
+ * 示例 1:
+ *
+ * 输入: [1,2,0]
+ * 输出: 3
+ * 示例 2:
+ *
+ * 输入: [3,4,-1,1]
+ * 输出: 2
+ * 示例 3:
+ *
+ * 输入: [7,8,9,11,12]
+ * 输出: 1
+ * 说明:
+ *
+ * 你的算法的时间复杂度应为O(n),并且只能使用常数级别的空间。
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/first-missing-positive
+ */
+public class _41_firstMissingPositive {
+ public static void main(String[] args) {
+ _41_firstMissingPositive firstMissingPositive = new _41_firstMissingPositive();
+ System.out.println(firstMissingPositive.firstMissingPositive(new int[]{3, 4, -1, 1}));
+ }
+
+ /**
+ * 解题思路:
+ * 题目要求算法时间复杂度在O(n),也就是说不能排序(排序最好的平均复杂度也在O(nLogn))
+ * O(n)的复杂度只允许一次循环或者常数级的循环,并且只能使用常数级别的空间==>题目的难点
+ *
+ * 官方的解法:
+ * 1、检查 1 是否存在于数组中。如果没有,则已经完成,1 即为答案。
+ * 2、如果 nums = [1],答案即为 2 。
+ * 3、将负数,零,和大于 n 的数替换为 1 。
+ * 4、遍历数组。当读到数字 a 时,替换第 a 个元素的符号。 注意重复元素:只能改变一次符号。由于没有下标 n ,使用下标 0 的元素保存是否存在数字 n。
+ * 5、再次遍历数组。返回第一个正数元素的下标。
+ * 6、如果 nums[0] > 0,则返回 n 。
+ * 7、如果之前的步骤中没有发现 nums 中有正数元素,则返回n + 1。
+ * 详细说明:https://leetcode-cn.com/problems/first-missing-positive/solution/que-shi-de-di-yi-ge-zheng-shu-by-leetcode/
+ *
+ * 时间复杂度: O(N) 由于所有的操作一共只会遍历长度为 N 的数组 4 次。
+ * 空间复杂度: O(1) 由于只使用了常数的空间,原地遍历
+ *
+ * @param nums
+ * @return
+ */
+ public int firstMissingPositive(int[] nums) {
+ int n = nums.length;
+
+ // 基本情况
+ int contains = 0;
+ for (int i = 0; i < n; i++)
+ if (nums[i] == 1) {
+ contains++;
+ break;
+ }
+
+ //不存在1,则最小正整数就是1
+ if (contains == 0)
+ return 1;
+
+ // nums = [1]
+ if (n == 1)
+ return 2;
+
+ // 用 1 替换负数,0,
+ // 和大于 n 的数
+ // 在转换以后,nums 只会包含
+ // 正数
+ for (int i = 0; i < n; i++)
+ if ((nums[i] <= 0) || (nums[i] > n))
+ nums[i] = 1;
+
+ // 使用索引和数字符号作为检查器
+ // 例如,如果 nums[1] 是负数表示在数组中出现了数字 `1`
+ // 如果 nums[2] 是正数 表示数字 2 没有出现
+ for (int i = 0; i < n; i++) {
+ int a = Math.abs(nums[i]);
+ // 如果发现了一个数字 a - 改变第 a 个元素的符号
+ // 注意重复元素只需操作一次
+ if (a == n)
+ nums[0] = -Math.abs(nums[0]);
+ else
+ nums[a] = -Math.abs(nums[a]);
+ }
+
+ // 现在第一个正数的下标
+ // 就是第一个缺失的数
+ for (int i = 1; i < n; i++) {
+ if (nums[i] > 0)
+ return i;
+ }
+
+ if (nums[0] > 0)
+ return n;
+
+ return n + 1;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_437_pathSum.java b/src/pp/arithmetic/leetcode/_437_pathSum.java
new file mode 100644
index 0000000..5fd1be8
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_437_pathSum.java
@@ -0,0 +1,108 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.model.TreeNode;
+
+import java.util.*;
+
+/**
+ * Created by wangpeng on 2019-08-29.
+ * 437. 路径总和 III
+ *
+ * 给定一个二叉树,它的每个结点都存放着一个整数值。
+ *
+ * 找出路径和等于给定数值的路径总数。
+ *
+ * 路径不需要从根节点开始,也不需要在叶子节点结束,但是路径方向必须是向下的(只能从父节点到子节点)。
+ *
+ * 二叉树不超过1000个节点,且节点数值范围是 [-1000000,1000000] 的整数。
+ *
+ * 示例:
+ *
+ * root = [10,5,-3,3,2,null,11,3,-2,null,1], sum = 8
+ *
+ * 10
+ * / \
+ * 5 -3
+ * / \ \
+ * 3 2 11
+ * / \ \
+ * 3 -2 1
+ *
+ * 返回 3。和等于 8 的路径有:
+ *
+ * 1. 5 -> 3
+ * 2. 5 -> 2 -> 1
+ * 3. -3 -> 11
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/path-sum-iii
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _437_pathSum {
+ public static void main(String[] args) {
+ _437_pathSum pathSum = new _437_pathSum();
+ //[10,5,-3,3,2,null,11,3,-2,null,1], sum = 8
+ TreeNode root = new TreeNode(10);
+ root.left = new TreeNode(5);
+ root.right = new TreeNode(-3);
+ root.left.left = new TreeNode(3);
+ root.left.right = new TreeNode(2);
+ root.right.right = new TreeNode(11);
+ root.left.left.left = new TreeNode(3);
+ root.left.left.right = new TreeNode(-2);
+ root.left.right.left = new TreeNode(1);
+ System.out.println(pathSum.pathSum(root, 8));
+ //[-2,null,-3],sum=-5
+ TreeNode r1 = new TreeNode(-2);
+ r1.right = new TreeNode(-3);
+ System.out.println(pathSum.pathSum(r1, -5));
+ //[1,-2,-3,1,3,-2,null,-1],sum=3
+ TreeNode r2 = new TreeNode(1);
+ r2.left = new TreeNode(-2);
+ r2.right = new TreeNode(-3);
+ r2.left.left = new TreeNode(1);
+ r2.left.right = new TreeNode(3);
+ r2.left.left.left = new TreeNode(-1);
+ r2.right.left = new TreeNode(-2);
+ System.out.println(pathSum.pathSum(r2, 3));
+ //[0,1,1] sum=1
+ TreeNode r3 = new TreeNode(0);
+ r3.left = new TreeNode(1);
+ r3.right = new TreeNode(1);
+ System.out.println(pathSum.pathSum(r3, 1));
+ }
+
+ int result = 0;
+
+ /**
+ * 解题思路:
+ * 1.中序遍历,将遍历结果保存在list中
+ * 2.从list的末尾开始累加,如和==sum,则结果+1
+ *
+ * @param root
+ * @param sum
+ * @return
+ */
+ public int pathSum(TreeNode root, int sum) {
+ result = 0;
+ List
+ * 给定一个范围在 1 ≤ a[i] ≤ n ( n = 数组大小 ) 的 整型数组,数组中的元素一些出现了两次,另一些只出现一次。
+ *
+ * 找到所有在 [1, n] 范围之间没有出现在数组中的数字。
+ *
+ * 您能在不使用额外空间且时间复杂度为O(n)的情况下完成这个任务吗? 你可以假定返回的数组不算在额外空间内。
+ *
+ * 示例:
+ *
+ * 输入:
+ * [4,3,2,7,8,2,3,1]
+ *
+ * 输出:
+ * [5,6]
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/find-all-numbers-disappeared-in-an-array
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _448_findDisappearedNumbers {
+
+ public static void main(String[] args) {
+ _448_findDisappearedNumbers findDisappearedNumbers = new _448_findDisappearedNumbers();
+ Util.printList(findDisappearedNumbers.findDisappearedNumbers(new int[]{4, 3, 2, 1, 8, 3, 2, 1}));
+ Util.printList(findDisappearedNumbers.findDisappearedNumbers2(new int[]{4, 3, 2, 7, 8, 2, 3, 1}));
+ }
+
+ /**
+ * 解题思路:
+ * 简单求解:用一个hash映射表保存出现过的数字,再遍历保存结果找出未出现的数字(使用了O(n)的额外空间)==>{findDisappearedNumbers2}
+ *
+ * 优化求解:去除O(n)的空间
+ * 1.遍历nums,将item对应的位置+n,用于标识是否出现过(注意对item取模)
+ * 2.再次遍历nums,找到小于n的位置就是未出现的数字了
+ *
+ * @param nums
+ * @return
+ */
+ public List
+ * 给定一个字符串 (s) 和一个字符模式 (p) ,实现一个支持 '?' 和 '*' 的通配符匹配。
+ *
+ * '?' 可以匹配任何单个字符。
+ * '*' 可以匹配任意字符串(包括空字符串)。
+ * 两个字符串完全匹配才算匹配成功。
+ *
+ * 说明:
+ *
+ * s 可能为空,且只包含从 a-z 的小写字母。
+ * p 可能为空,且只包含从 a-z 的小写字母,以及字符 ? 和 *。
+ * 示例 1:
+ *
+ * 输入:
+ * s = "aa"
+ * p = "a"
+ * 输出: false
+ * 解释: "a" 无法匹配 "aa" 整个字符串。
+ * 示例 2:
+ *
+ * 输入:
+ * s = "aa"
+ * p = "*"
+ * 输出: true
+ * 解释: '*' 可以匹配任意字符串。
+ * 示例 3:
+ *
+ * 输入:
+ * s = "cb"
+ * p = "?a"
+ * 输出: false
+ * 解释: '?' 可以匹配 'c', 但第二个 'a' 无法匹配 'b'。
+ * 示例 4:
+ *
+ * 输入:
+ * s = "adceb"
+ * p = "*a*b"
+ * 输出: true
+ * 解释: 第一个 '*' 可以匹配空字符串, 第二个 '*' 可以匹配字符串 "dce".
+ * 示例 5:
+ *
+ * 输入:
+ * s = "acdcb"
+ * p = "a*c?b"
+ * 输入: false
+ *
+ * @see wildcard-matching
+ */
+public class _44_isMatch {
+ public static void main(String[] args) {
+ _44_isMatch isMatch = new _44_isMatch();
+ //解法一
+ System.out.println(isMatch.isMatch("aa","a"));
+ System.out.println(isMatch.isMatch("aa","*"));
+ System.out.println(isMatch.isMatch("cb","?a"));
+ System.out.println(isMatch.isMatch("adceb","*a*b"));
+ System.out.println(isMatch.isMatch("acdcb","a*c?b"));
+ }
+
+ /**
+ * 这是一道贪心+回溯+动态规划的难题,可以考虑用几种方式实现下
+ * 解题1(动态规划):
+ * 存在一个匹配的问题,用一个二维的数组进行保存匹配结果
+ * 1. p.charAt(j) == '?' || s.charAt(i) == p.charAt(j)。
+ * 含义是如果p为此处字符为?或者p此处的字符与s此处的字符相同,
+ * 则显然dp[i+1][j+1] = dp[i][j]
+ * 2. p.charAt(j) == '*'。这种情况较为复杂。分情况讨论。
+ * A. *代表0个字符,则此时dp[i+1][j+1]=dp[i+1][j]
+ * B. *代表1个字符,则此时dp[i+1][j+1]=dp[i][j]
+ * C. *代表2个字符,则此时dp[i+1][j+1]=dp[i-1][j]
+ * D. *代表3个字符,则此时dp[i+1][j+1]=dp[i-2][j]
+ * ...
+ * 因此,最后的统一结果为
+ * dp[i+1][j+1]=dp[i+1][j] || dp[i][j] || dp[i-1][j] ||
+ * dp[i-2][j] || ... || dp[0][j]
+ * 需要注意的是按照上述公式,可以得到
+ * dp[i][j+1] = dp[i][j] || dp[i-1][j] || dp[i-2][j] ||
+ * dp[i-3][j] || ... || dp[0][j]
+ * 因此dp[i+1][j+1] = dp[i+1][j] || dp[i][j+1]
+ * 3. s.charAt(i) != p.charAt(j) 不匹配
+ * dp[i+1][j+1] = false;
+ *
+ * @param s
+ * @param p
+ * @return
+ */
+ public boolean isMatch(String s, String p) {
+ int sLen = s.length(), pLen = p.length();
+ boolean[][] dp = new boolean[sLen + 1][pLen + 1];
+ dp[0][0] = true;
+ for (int j = 0; j < pLen; j++) {
+ //初始化第一行数据
+ dp[0][j + 1] = dp[0][j] && (p.charAt(j) == '*');
+
+ for (int i = 0; i < sLen; i++) {
+ //情况1
+ if (p.charAt(j) == '?' || p.charAt(j) == s.charAt(i)) {
+ dp[i + 1][j + 1] = dp[i][j];
+ }
+ //情况2
+ else if (p.charAt(j) == '*') {
+ dp[i + 1][j + 1] = (dp[i][j + 1] || dp[i + 1][j]);
+ }
+ //not match
+ else {
+ dp[i + 1][j + 1] = false;
+ }
+ }
+ }
+
+ return dp[sLen][pLen];
+ }
+
+}
diff --git a/src/pp/arithmetic/leetcode/_461_hammingDistance.java b/src/pp/arithmetic/leetcode/_461_hammingDistance.java
new file mode 100644
index 0000000..083a7bb
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_461_hammingDistance.java
@@ -0,0 +1,90 @@
+package pp.arithmetic.leetcode;
+
+/**
+ * Created by wangpeng on 2019-08-31.
+ * 461. 汉明距离
+ *
+ * 两个整数之间的汉明距离指的是这两个数字对应二进制位不同的位置的数目。
+ *
+ * 给出两个整数 x 和 y,计算它们之间的汉明距离。
+ *
+ * 注意:
+ * 0 ≤ x, y < 231.
+ *
+ * 示例:
+ *
+ * 输入: x = 1, y = 4
+ *
+ * 输出: 2
+ *
+ * 解释:
+ * 1 (0 0 0 1)
+ * 4 (0 1 0 0)
+ * ↑ ↑
+ *
+ * 上面的箭头指出了对应二进制位不同的位置。
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/hamming-distance
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _461_hammingDistance {
+ public static void main(String[] args) {
+ _461_hammingDistance hammingDistance = new _461_hammingDistance();
+ System.out.println(hammingDistance.hammingDistance(1, 4));
+ System.out.println(hammingDistance.hammingDistance1(1, 254));
+ }
+
+ /**
+ * 解题思路:
+ * 1.x^y做异或操作,得到的结果中不同位置都是1
+ * 2.将异或结果转换成二进制字符串
+ * 3.遍历二进制字符串得到 1 的个数
+ *
+ * 更优解法{@link _461_hammingDistance#hammingDistance1(int, int)}
+ *
+ * @param x
+ * @param y
+ * @return
+ */
+ public int hammingDistance(int x, int y) {
+ int result = 0;
+ int i = x ^ y;
+ String s = Integer.toBinaryString(i);
+ for (int j = 0; j < s.length(); j++) {
+ if (s.charAt(j) == '1') result++;
+ }
+ return result;
+ }
+
+ /**
+ * Integer.bitCount源码剖析
+ * (>>> 代表无符号右移,对于负数,右移后首位补0而非1)
+ * 0x55555555 ==> 01010101010101010101010101010101
+ * 0x33333333 ==> 00110011001100110011001100110011
+ * 0x0f0f0f0f ==> 00001111000011110000111100001111
+ *
+ * //第一步,每两位一个二进制数,每个二进制数的值表示这两位中“1”的数量。00->00,01->01,10->01,11->10
+ * i = i - ((i >>> 1) & 0x55555555);
+ * //第二步,两两分组,计算出两两的总数,保存在4中
+ * i = (i & 0x33333333) + ((i >>> 2) & 0x33333333);
+ * //第三步,四四分组,计算出四四中的总数,保存在8中
+ * i = (i + (i >>> 4)) & 0x0f0f0f0f;
+ * //第四步,八八分组,计算出八八中的总数,保存在16中
+ * i = i + (i >>> 8);
+ * //第五步,16-16分组,计算出16-16总数
+ * i = i + (i >>> 16);
+ * //结果返回
+ * return i & 0x3f;
+ *
+ * 过程并不是很好理解,可以通过debug和手写模拟下
+ * 用一句话就是把二进制数按两位分组,相邻分组两两相加得四位二进制的bitCount,再按四位分组,相邻分组两两相得八位二进制的bitCount,以此类推直到算出32位的bitCount数量。
+ *
+ * @param x
+ * @param y
+ * @return
+ */
+ public int hammingDistance1(int x, int y) {
+ return Integer.bitCount(x ^ y);
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_46_permute.java b/src/pp/arithmetic/leetcode/_46_permute.java
new file mode 100644
index 0000000..0d5a95e
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_46_permute.java
@@ -0,0 +1,81 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * Created by wangpeng on 2019-05-29.
+ * 46. 全排列
+ *
+ * 给定一个没有重复数字的序列,返回其所有可能的全排列。
+ *
+ * 示例:
+ *
+ * 输入: [1,2,3]
+ * 输出:
+ * [
+ * [1,2,3],
+ * [1,3,2],
+ * [2,1,3],
+ * [2,3,1],
+ * [3,1,2],
+ * [3,2,1]
+ * ]
+ *
+ * @see permutations
+ */
+public class _46_permute {
+ public static void main(String[] args) {
+ _46_permute permute = new _46_permute();
+ List
+ * 给定一个可包含重复数字的序列,返回所有不重复的全排列。
+ *
+ * 示例:
+ *
+ * 输入: [1,1,2]
+ * 输出:
+ * [
+ * [1,1,2],
+ * [1,2,1],
+ * [2,1,1]
+ * ]
+ *
+ * @see permutations-ii
+ */
+public class _47_permuteUnique {
+ public static void main(String[] args) {
+ _47_permuteUnique permuteUnique = new _47_permuteUnique();
+ List
+ * 给定一个 n × n 的二维矩阵表示一个图像。
+ *
+ * 将图像顺时针旋转 90 度。
+ *
+ * 说明:
+ *
+ * 你必须在原地旋转图像,这意味着你需要直接修改输入的二维矩阵。请不要使用另一个矩阵来旋转图像。
+ *
+ * 示例 1:
+ *
+ * 给定 matrix =
+ * [
+ * [1,2,3],
+ * [4,5,6],
+ * [7,8,9]
+ * ],
+ *
+ * 原地旋转输入矩阵,使其变为:
+ * [
+ * [7,4,1],
+ * [8,5,2],
+ * [9,6,3]
+ * ]
+ * 示例 2:
+ *
+ * 给定 matrix =
+ * [
+ * [ 5, 1, 9,11],
+ * [ 2, 4, 8,10],
+ * [13, 3, 6, 7],
+ * [15,14,12,16]
+ * ],
+ *
+ * 原地旋转输入矩阵,使其变为:
+ * [
+ * [15,13, 2, 5],
+ * [14, 3, 4, 1],
+ * [12, 6, 8, 9],
+ * [16, 7,10,11]
+ * ]
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/rotate-image
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _48_rotate {
+
+ public static void main(String[] args) {
+ _48_rotate rotate = new _48_rotate();
+ int[][] arrs = {
+ {5, 1, 9, 11},
+ {2, 4, 8, 10},
+ {13, 3, 6, 7},
+ {15, 14, 12, 16}
+ };
+ rotate.rotate(arrs);
+ for (int i = 0; i < arrs.length; i++) {
+ Util.printArray(arrs[i]);
+ }
+ }
+
+ /**
+ * 解题思路:
+ * 因为需要原地旋转(不借助另一个矩阵),可以考虑借助一个临时的存储位,接受被旋转位的数据
+ * 考虑:如何找到旋转规律?==>纸上比划比划
+ * 发现旋转规律:下一位的行等于上一位的列,下一位的列=n-上一位的行-1(-1是从0开始)
+ * 代码实现:先从外部循环,结束后再逐步向内走,直到循环结束
+ *
+ * 需要注意:循环结束条件
+ *
+ * @param matrix
+ */
+ public void rotate(int[][] matrix) {
+ int n = matrix.length;
+ if (n == 1) return;
+ int hn = n % 2 == 0 ? n / 2 : (n / 2 + 1);//一半取偶数的一半,奇数一半+1
+ int rowI = 0, colI = 0;
+ int nrowI, ncolI, tempI;//循环的下标
+ int temp, preTemp;
+ while (colI < n - 1 && rowI < n - 1) {
+ nrowI = rowI;
+ ncolI = colI;
+ preTemp = matrix[nrowI][ncolI];
+ //旋转遍历四次
+ for (int i = 0; i < 4; i++) {
+ //取旋转的位置
+ tempI = nrowI;
+ nrowI = ncolI;
+ ncolI = n - 1 - tempI;
+ temp = matrix[nrowI][ncolI];
+ matrix[nrowI][ncolI] = preTemp;
+ preTemp = temp;
+ }
+ //取下一位循环位置
+ colI++;
+ if (colI - rowI > n - rowI * 2 - 2) { //每次向内缩一圈,少两位
+ rowI++;
+ colI = rowI;
+ if (rowI >= hn) {
+ break;
+ }
+ }
+ }
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_494_findTargetSumWays.java b/src/pp/arithmetic/leetcode/_494_findTargetSumWays.java
new file mode 100644
index 0000000..046c0b6
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_494_findTargetSumWays.java
@@ -0,0 +1,114 @@
+package pp.arithmetic.leetcode;
+
+/**
+ * Created by wangpeng on 2019-09-02.
+ * 494. 目标和
+ *
+ * 给定一个非负整数数组,a1, a2, ..., an, 和一个目标数,S。现在你有两个符号 + 和 -。对于数组中的任意一个整数,你都可以从 + 或 -中选择一个符号添加在前面。
+ *
+ * 返回可以使最终数组和为目标数 S 的所有添加符号的方法数。
+ *
+ * 示例 1:
+ *
+ * 输入: nums: [1, 1, 1, 1, 1], S: 3
+ * 输出: 5
+ * 解释:
+ *
+ * -1+1+1+1+1 = 3
+ * +1-1+1+1+1 = 3
+ * +1+1-1+1+1 = 3
+ * +1+1+1-1+1 = 3
+ * +1+1+1+1-1 = 3
+ *
+ * 一共有5种方法让最终目标和为3。
+ * 注意:
+ *
+ * 数组的长度不会超过20,并且数组中的值全为正数。
+ * 初始的数组的和不会超过1000。
+ * 保证返回的最终结果为32位整数。
+ *
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/target-sum
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _494_findTargetSumWays {
+
+ public static void main(String[] args) {
+ _494_findTargetSumWays findTargetSumWays = new _494_findTargetSumWays();
+ System.out.println(findTargetSumWays.findTargetSumWays(new int[]{1, 1, 1, 1, 1}, 3));
+ System.out.println(findTargetSumWays.findTargetSumWays1(new int[]{1, 1, 1, 1, 1}, 3));
+ }
+
+ /**
+ * 解题思路:
+ * 暴力解法:每一位有两种操作(+、-),深度遍历整个数组,得到满足条件的个数,时间复杂度O(2^n) {@link _494_findTargetSumWays#findTargetSumWays1(int[], int)}
+ *
+ * 优化解法:0-1背包问题改版
+ * 1、求出背包中要取的总数和:
+ * 假设取正数和P,负数和N,P-N = target
+ * 两边同时加上 P+N ==> P+N+P-N = target + P+N(其中P+N=nums的总和)
+ * 2*P = target+sum ==> P = (target+sum)/2(P就是要取得总和)
+ * 2、dp[i]代表合成i有多少种方法,动态转移方程dp[i] += dp[i - num];
+ * dp[i]的总和 == 除了i以外所有可能性总和,举例:[n1,n2,n3],dp[i]=dp[i-n1]+dp[i-n2]+dp[i-n3]
+ *
+ * @param nums
+ * @param target
+ * @return
+ */
+ public int findTargetSumWays(int[] nums, int target) {
+ int sum = 0;
+
+ for(int num : nums) {
+ sum += num;
+ }
+
+ if(Math.abs(target) > sum || (sum + target) % 2 != 0) {
+ return 0;
+ }
+
+ //1
+ int P = (sum + target) / 2;
+ int[] dp = new int[P + 1];
+ dp[0] = 1;
+
+ //2、
+ for (int num : nums) {
+ for (int i = P; i >= num; i--) {
+ dp[i] += dp[i - num];
+ }
+ }
+
+ return dp[P];
+ }
+
+ private int result = 0;
+
+ /**
+ * 暴力解法:
+ * 执行用时 :673 ms, 在所有 Java 提交中击败了19.31%的用户
+ * 内存消耗 :35.2 MB, 在所有 Java 提交中击败了81.70%的用户
+ *
+ * @param nums
+ * @param S
+ * @return
+ */
+ private int findTargetSumWays1(int[] nums, int S) {
+ dfs(nums, S, 0, 0);
+ return result;
+ }
+
+ private void dfs(int[] nums, int S, int index, int cS) {
+ if (cS == S && index == nums.length) {
+ result++;
+ return;
+ }
+ if (index >= nums.length) {
+ return;
+ }
+ //+
+ dfs(nums, S, index + 1, cS + nums[index]);
+ //-
+ dfs(nums, S, index + 1, cS - nums[index]);
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_50_myPow.java b/src/pp/arithmetic/leetcode/_50_myPow.java
new file mode 100644
index 0000000..9e3e0b5
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_50_myPow.java
@@ -0,0 +1,76 @@
+package pp.arithmetic.leetcode;
+
+/**
+ * Created by wangpeng on 2019-06-22.
+ * 50. Pow(x, n)
+ *
+ * 实现 pow(x, n) ,即计算 x 的 n 次幂函数。
+ *
+ * 示例 1:
+ *
+ * 输入: 2.00000, 10
+ * 输出: 1024.00000
+ * 示例 2:
+ *
+ * 输入: 2.10000, 3
+ * 输出: 9.26100
+ * 示例 3:
+ *
+ * 输入: 2.00000, -2
+ * 输出: 0.25000
+ * 解释: 2-2 = 1/22 = 1/4 = 0.25
+ * 说明:
+ *
+ * -100.0 < x < 100.0
+ * n 是 32 位有符号整数,其数值范围是 [−2^31, 2^31 − 1] 。
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/powx-n
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _50_myPow {
+
+ public static void main(String[] args) {
+ _50_myPow pow = new _50_myPow();
+ System.out.println(pow.myPow(2.1, 3));
+ System.out.println(pow.myPow(2, -2));
+ System.out.println(pow.myPow(0.3, -2));
+ System.out.println(pow.myPow(0.3, 1));
+ System.out.println(pow.myPow(0.4127, 0));
+ System.out.println(pow.myPow(0.00001, 2147483647));
+ }
+
+ /**
+ * 解析思路:
+ * 平方不就是n个数相乘么,n为负数的时候,先将x求倒数,再n次相乘(此方法会提交超时O(n))
+ *
+ * 优化:
+ * 将上述循环相乘的方法根据分治思想,一分为二(只需要求一半即可,另一半是相同的,奇数再*x),不断拆分至两个数相乘,时间复杂度优化到O(LogN)
+ * 这个方法称为"快速幂乘法"
+ *
+ * @param x
+ * @param n
+ * @return
+ */
+ public double myPow(double x, int n) {
+ if (n < 0) {
+ x = 1f / x;
+ }
+ n = Math.abs(n);
+ //分治求解
+ return fastPow(x, n);
+ }
+
+ double fastPow(double x, long n) {
+ if (n == 0) {
+ return 1.0;
+ }
+ double half = fastPow(x, n / 2);
+ if (n % 2 == 0) {
+ return half * half;
+ } else {
+ return half * half * x;
+ }
+ }
+
+}
diff --git a/src/pp/arithmetic/leetcode/_52_totalNQueens.java b/src/pp/arithmetic/leetcode/_52_totalNQueens.java
new file mode 100644
index 0000000..aeaf857
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_52_totalNQueens.java
@@ -0,0 +1,90 @@
+package pp.arithmetic.leetcode;
+
+/**
+ * Created by wangpeng on 2019-05-31.
+ * 52. N皇后 II
+ *
+ * n 皇后问题研究的是如何将 n 个皇后放置在 n×n 的棋盘上,并且使皇后彼此之间不能相互攻击。
+ *
+ *
+ * 上图为 8 皇后问题的一种解法。
+ *
+ * 给定一个整数 n,返回 n 皇后不同的解决方案的数量。
+ *
+ * 示例:
+ *
+ * 输入: 4
+ * 输出: 2
+ * 解释: 4 皇后问题存在如下两个不同的解法。
+ * [
+ * [".Q..", // 解法 1
+ * "...Q",
+ * "Q...",
+ * "..Q."],
+ *
+ * ["..Q.", // 解法 2
+ * "Q...",
+ * "...Q",
+ * ".Q.."]
+ * ]
+ *
+ * @see n-queens-ii
+ */
+public class _52_totalNQueens {
+ public static void main(String[] args) {
+ _52_totalNQueens totalNQueens = new _52_totalNQueens();
+ System.out.println(totalNQueens.totalNQueens(5));
+ }
+
+ //运算结果
+ private int resultCount = 0;
+
+ /**
+ * 解题思路(回溯算法):
+ * 1.创建一个大小为n的数组,保存摆放皇后的位置
+ * 2.从第一位开始尝试,一直取到N,每一次摆放皇后都得判断是否满足条件
+ * 3.如摆放过程中发现没有满足条件的位置,则回溯上一位并寻找下一个可放置的位置
+ * 4.如n个皇后都正确摆放,则结果+1,回溯上一位寻找下一个可放置的位置
+ *
+ * @param n
+ * @return
+ */
+ public int totalNQueens(int n) {
+ int[] positions = new int[n];
+ dfs(positions, 0, n);
+ return resultCount;
+ }
+
+ private void dfs(int[] positions, int index, int n) {
+ if (index >= n) return;
+ for (int i = 0; i < n; i++) {
+ positions[index] = i;
+ if (isMatch(positions, index)) {
+ if (index == n - 1) {
+ resultCount++;
+ } else {
+ dfs(positions, index + 1, n);
+ }
+ }
+ }
+ }
+
+ /**
+ * 是否满足N皇后的规则,横、竖、斜边不能放
+ *
+ * @param positions
+ * @param index
+ * @return
+ */
+ private boolean isMatch(int[] positions, int index) {
+ for (int i = 0; i < index; i++) {
+ //判断横向和斜向是否在一条线上即可,因为竖向用一位数组存储就避免了
+ if (positions[i] == positions[index] || Math.abs(positions[i] - positions[index]) == index - i) {
+ return false;
+ }
+ }
+ return true;
+ }
+
+}
diff --git a/src/pp/arithmetic/leetcode/_543_diameterOfBinaryTree.java b/src/pp/arithmetic/leetcode/_543_diameterOfBinaryTree.java
new file mode 100644
index 0000000..97ee3b0
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_543_diameterOfBinaryTree.java
@@ -0,0 +1,68 @@
+package pp.arithmetic.leetcode;
+
+import javafx.util.Pair;
+import pp.arithmetic.model.TreeNode;
+
+/**
+ * Created by wangpeng on 2019-09-03.
+ * 543. 二叉树的直径
+ *
+ * 给定一棵二叉树,你需要计算它的直径长度。一棵二叉树的直径长度是任意两个结点路径长度中的最大值。这条路径可能穿过根结点。
+ *
+ * 示例 :
+ * 给定二叉树
+ *
+ * 1
+ * / \
+ * 2 3
+ * / \
+ * 4 5
+ * 返回 3, 它的长度是路径 [4,2,1,3] 或者 [5,2,1,3]。
+ *
+ * 注意:两结点之间的路径长度是以它们之间边的数目表示。
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/diameter-of-binary-tree
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _543_diameterOfBinaryTree {
+
+ public static void main(String[] args) {
+ _543_diameterOfBinaryTree diameterOfBinaryTree = new _543_diameterOfBinaryTree();
+ TreeNode root = new TreeNode(1);
+ root.left = new TreeNode(2);
+ root.right = new TreeNode(3);
+ root.left.left = new TreeNode(4);
+ root.left.right = new TreeNode(5);
+
+ System.out.println(diameterOfBinaryTree.diameterOfBinaryTree(root));
+
+ }
+
+ private int ret = 0;
+
+ /**
+ * 解题思路:
+ * 对于树的问题,正常思路就是遍历,此题也不例外
+ * 如题所示,找到最长的路径,有两种可能:
+ * 一、根节点+左右子树节点
+ * 二、根节点+最长的子树节点作为其父节点的子节点
+ * 递归遍历过程中,用一个全局变量保存遍历过程中的最大值
+ *
+ * @param root
+ * @return
+ */
+ public int diameterOfBinaryTree(TreeNode root) {
+ dfs(root);
+ return ret;
+ }
+
+ private int dfs(TreeNode root) {
+ if (root == null) return 0;
+ int left = dfs(root.left);
+ int right = dfs(root.right);
+ int count = left + right;
+ ret = Math.max(ret, count);
+ return Math.max(left, right) + 1;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_54_spiralOrder.java b/src/pp/arithmetic/leetcode/_54_spiralOrder.java
new file mode 100644
index 0000000..996d73a
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_54_spiralOrder.java
@@ -0,0 +1,88 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.List;
+
+/**
+ * Created by wangpeng on 2019-06-24.
+ * 54. 螺旋矩阵
+ *
+ * 给定一个包含 m x n 个元素的矩阵(m 行, n 列),请按照顺时针螺旋顺序,返回矩阵中的所有元素。
+ *
+ * 示例 1:
+ *
+ * 输入:
+ * [
+ * [ 1, 2, 3 ],
+ * [ 4, 5, 6 ],
+ * [ 7, 8, 9 ]
+ * ]
+ * 输出: [1,2,3,6,9,8,7,4,5]
+ * 示例 2:
+ *
+ * 输入:
+ * [
+ * [1, 2, 3, 4],
+ * [5, 6, 7, 8],
+ * [9,10,11,12]
+ * ]
+ * 输出: [1,2,3,4,8,12,11,10,9,5,6,7]
+ *
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/spiral-matrix
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _54_spiralOrder {
+
+ public static void main(String[] args) {
+ _54_spiralOrder spiralOrder = new _54_spiralOrder();
+ Util.printList(spiralOrder.spiralOrder(new int[][]{
+ {1, 2, 3, 4},
+ {5, 6, 7, 8},
+ {9, 10, 11, 12},
+ {13, 14, 15, 16},
+ {17, 18, 19, 20},
+ }));
+ Util.printList(spiralOrder.spiralOrder(new int[][]{
+ {1, 2, 3},
+ {4, 5, 6},
+ {7, 8, 9}
+ }));
+ Util.printList(spiralOrder.spiralOrder(new int[][]{
+ {1, 2, 3}
+ }));
+ }
+
+ /**
+ * 一眼看过去,遍历很简单,如何转换成代码上的遍历逻辑,最好就是遍历一遍就把结果得到
+ * 解题思路:
+ * 通过四层循环按条件遍历结果
+ *
+ * @param matrix
+ * @return
+ */
+ public List
+ * 给定一个整数数组和一个整数 k,你需要找到该数组中和为 k 的连续的子数组的个数。
+ *
+ * 示例 1 :
+ *
+ * 输入:nums = [1,1,1], k = 2
+ * 输出: 2 , [1,1] 与 [1,1] 为两种不同的情况。
+ * 说明 :
+ *
+ * 数组的长度为 [1, 20,000]。
+ * 数组中元素的范围是 [-1000, 1000] ,且整数 k 的范围是 [-1e7, 1e7]。
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/subarray-sum-equals-k
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _560_subarraySum {
+
+ public static void main(String[] args) {
+ _560_subarraySum subarraySum = new _560_subarraySum();
+ System.out.println(subarraySum.subarraySum(new int[]{1,1,1,1,1,1},2));
+ System.out.println(subarraySum.subarraySum2(new int[]{1,1,1,1,1,1},2));
+ }
+
+ /**
+ * 解题思路:
+ * 由于数组中存在正数和负数,所以求和必须得所有的0-n之间的所有区间都得统计
+ * 暴力就是三层循环,可以利用之前的计算结果
+ * sum[i]保存0-i之间的和,求解i-j就使用sum[j]-sum[i]
+ *
+ * 执行用时 :488 ms, 在所有 Java 提交中击败了7.40%的用户
+ * 内存消耗 :43.4 MB, 在所有 Java 提交中击败了71.76%的用户
+ *
+ * @param nums
+ * @param k
+ * @return
+ */
+ public int subarraySum(int[] nums, int k) {
+ int count = 0;
+ int[] sum = new int[nums.length + 1];
+ sum[0] = 0;
+ for (int i = 1; i <= nums.length; i++) {
+ sum[i] = sum[i - 1] + nums[i - 1];
+ }
+ for (int start = 0; start < nums.length; start++) {
+ for (int end = start + 1; end <= nums.length; end++) {
+ if (sum[end] - sum[start] == k)
+ count++;
+ }
+ }
+ return count;
+ }
+
+ /**
+ * 优化求解:
+ * 核心思想:sum[i]代表0-i的总和,如果sum[i]-sum[j]==k,那么sum[j]对于的个数就是区间i-j的满足条件和
+ * 使用一个map保存sum<->count之间的对应关系
+ * O(n)复杂度就能找出结果
+ *
+ * @param nums
+ * @param k
+ * @return
+ */
+ public int subarraySum2(int[] nums, int k) {
+ int count = 0, sum = 0;
+ HashMap
+ * 给出一个无重叠的 ,按照区间起始端点排序的区间列表。
+ *
+ * 在列表中插入一个新的区间,你需要确保列表中的区间仍然有序且不重叠(如果有必要的话,可以合并区间)。
+ *
+ * 示例 1:
+ *
+ * 输入: intervals = [[1,3],[6,9]], newInterval = [2,5]
+ * 输出: [[1,5],[6,9]]
+ * 示例 2:
+ *
+ * 输入: intervals = [[1,2],[3,5],[6,7],[8,10],[12,16]], newInterval = [4,8]
+ * 输出: [[1,2],[3,10],[12,16]]
+ * 解释: 这是因为新的区间 [4,8] 与 [3,5],[6,7],[8,10] 重叠。
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/insert-interval
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _57_insert {
+ public static void main(String[] args) {
+
+ _57_insert insert = new _57_insert();
+ int[][] insert1 = insert.insert(new int[][]{
+ {1, 2}, {3, 5}, {6, 7}, {8, 10}, {12, 16}
+ }, new int[]{4, 8});
+ for (int i = 0; i < insert1.length; i++) {
+ Util.printArray(insert1[i]);
+ }
+
+ }
+
+ /**
+ * 前提:
+ * 对于数字和一个区间的关系只有三种,在区间内,区间前,区间后
+ *
+ * 解题思路:
+ * 1.遍历intervals,拿到item后先判断,确定newInterval的起始和终止位置和区间的关系si,sFind,ei,eFind
+ * 2.si,ei代表和目前区间的位置关系,-1代表不在区间范围内(比最后一个区间都大)
+ * 3.sFind,eFind代表是否在区间内,true表示区间内,false表示区间前(区间后可以转换为下一个区间的区间前)
+ * 4.根据si,sFind,ei,eFind去拼装结果
+ * 5.if:si == -1 && ei == -1 ==> 最后加入
+ * 6.else if:si == ei ==> 中间插入或者更新某个区间
+ * 7.else ==> 合并区间
+ *
+ * @param intervals
+ * @param newInterval
+ * @return
+ */
+ public int[][] insert(int[][] intervals, int[] newInterval) {
+ int[][] retArr;
+
+ int newStart = newInterval[0];
+ int newEnd = newInterval[1];
+ int si = -1, ei = -1;
+ boolean sFind = false, eFind = false;
+ for (int i = 0; i < intervals.length; i++) {
+ int[] item = intervals[i];
+ int itemStart = item[0];
+ int itemEnd = item[1];
+ if (si == -1) {
+ if (newStart <= itemEnd) {
+ si = i;
+ if (newStart >= itemStart) {
+ sFind = true;
+ }
+ }
+ }
+ if (ei == -1) {
+ if (newEnd <= itemEnd) {
+ ei = i;
+ if (newEnd >= itemStart) {
+ eFind = true;
+ }
+ }
+ }
+ if (si != -1 && ei != -1) {
+ break;
+ }
+ }
+ //插入or合并区间
+ if (si == -1 && ei == -1) {
+ //插入最后
+ retArr = Arrays.copyOf(intervals, intervals.length + 1);
+ retArr[intervals.length] = new int[]{newStart, newEnd};
+ } else if (si == ei) {
+ int[] temp = new int[2];
+ if (!sFind) {
+ temp[0] = newStart;
+ } else {
+ temp[0] = intervals[si][0];
+ }
+ if (!eFind) {
+ temp[1] = newEnd;
+ } else {
+ temp[1] = intervals[ei][1];
+ }
+ if (!sFind && !eFind) {
+ //新插入一个
+ retArr = new int[intervals.length + 1][];
+ int insetI = 0;
+ for (int i = 0; i < intervals.length; i++) {
+ if (i == si) {
+ retArr[insetI] = temp;
+ insetI++;
+ }
+ retArr[insetI] = intervals[i];
+ insetI++;
+ }
+ } else {
+ intervals[si] = temp;
+ retArr = Arrays.copyOf(intervals, intervals.length);
+ }
+ } else {
+ //合并区间
+ int skipStartI, skipEndI;
+ int[] temp = new int[2];
+ if (sFind) {
+ temp[0] = intervals[si][0];
+ skipStartI = si;
+ } else {
+ temp[0] = newStart;
+ skipStartI = si;
+ }
+ if (eFind) {
+ temp[1] = intervals[ei][1];
+ skipEndI = ei;
+ } else {
+ temp[1] = newEnd;
+ if (ei == -1) {
+ skipEndI = intervals.length - 1;
+ } else {
+ skipEndI = ei - 1;
+ }
+ }
+ int skip = skipEndI - skipStartI;
+ retArr = new int[intervals.length - skip][];
+ for (int i = 0; i < intervals.length; i++) {
+ if (i < skipStartI) {
+ retArr[i] = intervals[i];
+ } else if (i >= skipStartI && i <= skipEndI) {
+ if (i == skipStartI) {
+ retArr[skipStartI] = temp;
+ }
+ } else {
+ retArr[i - skip] = intervals[i];
+ }
+ }
+ }
+
+
+ return retArr;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_581_findUnsortedSubarray.java b/src/pp/arithmetic/leetcode/_581_findUnsortedSubarray.java
new file mode 100644
index 0000000..eba7019
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_581_findUnsortedSubarray.java
@@ -0,0 +1,62 @@
+package pp.arithmetic.leetcode;
+
+import java.util.Stack;
+
+/**
+ * Created by wangpeng on 2019-09-12.
+ * 581. 最短无序连续子数组
+ *
+ * 给定一个整数数组,你需要寻找一个连续的子数组,如果对这个子数组进行升序排序,那么整个数组都会变为升序排序。
+ *
+ * 你找到的子数组应是最短的,请输出它的长度。
+ *
+ * 示例 1:
+ *
+ * 输入: [2, 6, 4, 8, 10, 9, 15]
+ * 输出: 5
+ * 解释: 你只需要对 [6, 4, 8, 10, 9] 进行升序排序,那么整个表都会变为升序排序。
+ * 说明 :
+ *
+ * 输入的数组长度范围在 [1, 10,000]。
+ * 输入的数组可能包含重复元素 ,所以升序的意思是<=。
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/shortest-unsorted-continuous-subarray
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _581_findUnsortedSubarray {
+
+ public static void main(String[] args) {
+ _581_findUnsortedSubarray findUnsortedSubarray = new _581_findUnsortedSubarray();
+ System.out.println(findUnsortedSubarray.findUnsortedSubarray(new int[]{2, 6, 4, 8, 10, 9, 15}));
+ System.out.println(findUnsortedSubarray.findUnsortedSubarray(new int[]{8, 6, 4, 8, 10, 9, 15}));
+ System.out.println(findUnsortedSubarray.findUnsortedSubarray(new int[]{2, 3, 3, 2, 4}));
+ System.out.println(findUnsortedSubarray.findUnsortedSubarray(new int[]{1, 3, 2, 2, 2}));
+ System.out.println(findUnsortedSubarray.findUnsortedSubarray(new int[]{1, 1}));
+ System.out.println(findUnsortedSubarray.findUnsortedSubarray(new int[]{1, 2, 4, 5, 3}));
+ }
+
+ /**
+ * 解题思路:
+ * 核心是我们需要找到无序子数组中最小元素和最大元素分别对应的正确位置
+ *
+ * @param nums
+ * @return
+ */
+ public int findUnsortedSubarray(int[] nums) {
+ Stack
+ * 给定一个仅包含大小写字母和空格 ' ' 的字符串,返回其最后一个单词的长度。
+ *
+ * 如果不存在最后一个单词,请返回 0 。
+ *
+ * 说明:一个单词是指由字母组成,但不包含任何空格的字符串。
+ *
+ * 示例:
+ *
+ * 输入: "Hello World"
+ * 输出: 5
+ *
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/length-of-last-word
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _58_lengthOfLastWord {
+
+ public static void main(String[] args) {
+ _58_lengthOfLastWord length = new _58_lengthOfLastWord();
+ System.out.println(length.lengthOfLastWord("Hello World"));
+ System.out.println(length.lengthOfLastWord(" s "));
+ System.out.println(length.lengthOfLastWord(" Hell "));
+ }
+
+ /**
+ * 解题思路:
+ * 从s的最后一个开始遍历,遇到首个非空的字母开始计数到下一个为空的时候停止
+ *
+ * @param s
+ * @return
+ */
+ public int lengthOfLastWord(String s) {
+ int startIndex = -1, endIndex = -1;
+ for (int i = s.length() - 1; i >= 0; i--) {
+ if (startIndex != -1 && s.charAt(i) == ' ') {
+ endIndex = i;
+ break;
+ }
+ if (startIndex == -1 && s.charAt(i) != ' ') {
+ startIndex = i;
+ }
+ }
+ if (startIndex == -1) {
+ return 0;
+ }
+ return startIndex - endIndex;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_59_generateMatrix.java b/src/pp/arithmetic/leetcode/_59_generateMatrix.java
new file mode 100644
index 0000000..8b5dac9
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_59_generateMatrix.java
@@ -0,0 +1,60 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+
+/**
+ * Created by wangpeng on 2019-07-02.
+ * 59. 螺旋矩阵 II
+ *
+ * 给定一个正整数 n,生成一个包含 1 到 n^2 所有元素,且元素按顺时针顺序螺旋排列的正方形矩阵。
+ *
+ * 示例:
+ *
+ * 输入: 3
+ * 输出:
+ * [
+ * [ 1, 2, 3 ],
+ * [ 8, 9, 4 ],
+ * [ 7, 6, 5 ]
+ * ]
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/spiral-matrix-ii
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _59_generateMatrix {
+ public static void main(String[] args) {
+ _59_generateMatrix generateMatrix = new _59_generateMatrix();
+ int[][] ints = generateMatrix.generateMatrix(3);
+ for (int i = 0; i < ints.length; i++) {
+ Util.printArray(ints[i]);
+ }
+ }
+
+ /**
+ * 解题思路:
+ * 通过四个变量(2个行0~n、2个列0~n),一圈一圈的遍历,每一圈遍历的时候做四个方向的遍历
+ *
+ * @param n
+ * @return
+ */
+ public int[][] generateMatrix(int n) {
+ int[][] matrix = new int[n][n];
+ int r1 = 0, r2 = matrix.length - 1;
+ int c1 = 0, c2 = matrix[0].length - 1;
+ int index = 1;
+ while (r1 <= r2 && c1 <= c2) {
+ for (int c = c1; c <= c2; c++) matrix[r1][c] = index++;
+ for (int r = r1 + 1; r <= r2; r++) matrix[r][c2] = index++;
+ if (r1 < r2 && c1 < c2) {
+ for (int c = c2 - 1; c > c1; c--) matrix[r2][c] = index++;
+ for (int r = r2; r > r1; r--) matrix[r][c1] = index++;
+ }
+ r1++;
+ r2--;
+ c1++;
+ c2--;
+ }
+ return matrix;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_617_mergeTrees.java b/src/pp/arithmetic/leetcode/_617_mergeTrees.java
new file mode 100644
index 0000000..ed51f40
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_617_mergeTrees.java
@@ -0,0 +1,75 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+import pp.arithmetic.model.TreeNode;
+
+/**
+ * Created by wangpeng on 2019-09-20.
+ *
+ * 给定两个二叉树,想象当你将它们中的一个覆盖到另一个上时,两个二叉树的一些节点便会重叠。
+ *
+ * 你需要将他们合并为一个新的二叉树。合并的规则是如果两个节点重叠,那么将他们的值相加作为节点合并后的新值,否则不为 NULL 的节点将直接作为新二叉树的节点。
+ *
+ * 示例 1:
+ *
+ * 输入:
+ * Tree 1 Tree 2
+ * 1 2
+ * / \ / \
+ * 3 2 1 3
+ * / \ \
+ * 5 4 7
+ * 输出:
+ * 合并后的树:
+ * 3
+ * / \
+ * 4 5
+ * / \ \
+ * 5 4 7
+ * 注意: 合并必须从两个树的根节点开始。
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/merge-two-binary-trees
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _617_mergeTrees {
+
+ public static void main(String[] args) {
+ TreeNode treeNode1 = new TreeNode(1);
+ treeNode1.left = new TreeNode(3);
+ treeNode1.right = new TreeNode(2);
+ treeNode1.left.left = new TreeNode(5);
+ TreeNode treeNode2 = new TreeNode(2);
+ treeNode2.left = new TreeNode(1);
+ treeNode2.left.right = new TreeNode(4);
+ treeNode2.right = new TreeNode(3);
+ treeNode2.right.right = new TreeNode(7);
+ _617_mergeTrees mergeTrees = new _617_mergeTrees();
+ TreeNode treeNode = mergeTrees.mergeTrees(treeNode1, treeNode2);
+ Util.printTree(treeNode);
+ }
+
+ /**
+ * 解题思路:
+ * 对于数的题目基本是DFS递归
+ * 1、构建父节点,如t1、t2的不为null,使其加和
+ * 2、构建子树节点,将t2、t2对应位置传递过去,重复步骤1
+ *
+ * @param t1
+ * @param t2
+ * @return
+ */
+ public TreeNode mergeTrees(TreeNode t1, TreeNode t2) {
+ if (t1 == null && t2 == null) {
+ return null;
+ }
+ //1、构建父节点
+ TreeNode node = new TreeNode(0);
+ if (t1 != null) node.val += t1.val;
+ if (t2 != null) node.val += t2.val;
+ //2、构建子树节点
+ node.left = mergeTrees(t1 == null ? null : t1.left, t2 == null ? null : t2.left);
+ node.right = mergeTrees(t1 == null ? null : t1.right, t2 == null ? null : t2.right);
+ return node;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_621_leastInterval.java b/src/pp/arithmetic/leetcode/_621_leastInterval.java
new file mode 100644
index 0000000..166fd3f
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_621_leastInterval.java
@@ -0,0 +1,73 @@
+package pp.arithmetic.leetcode;
+
+import java.util.Arrays;
+import java.util.Comparator;
+
+/**
+ * Created by wangpeng on 2019-09-25.
+ * 621. 任务调度器
+ *
+ * 给定一个用字符数组表示的 CPU 需要执行的任务列表。其中包含使用大写的 A - Z 字母表示的26 种不同种类的任务。任务可以以任意顺序执行,
+ * 并且每个任务都可以在 1 个单位时间内执行完。CPU 在任何一个单位时间内都可以执行一个任务,或者在待命状态。
+ *
+ * 然而,两个相同种类的任务之间必须有长度为 n 的冷却时间,因此至少有连续 n 个单位时间内 CPU 在执行不同的任务,或者在待命状态。
+ *
+ * 你需要计算完成所有任务所需要的最短时间。
+ *
+ * 示例 1:
+ *
+ * 输入: tasks = ["A","A","A","B","B","B"], n = 2
+ * 输出: 8
+ * 执行顺序: A -> B -> (待命) -> A -> B -> (待命) -> A -> B.
+ * 注:
+ *
+ * 任务的总个数为 [1, 10000]。
+ * n 的取值范围为 [0, 100]。
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/task-scheduler
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _621_leastInterval {
+
+ public static void main(String[] args) {
+ _621_leastInterval leastInterval = new _621_leastInterval();
+ System.out.println(leastInterval.leastInterval(new char[]{'A', 'A', 'A', 'B', 'B', 'B'}, 2));
+ System.out.println(leastInterval.leastInterval(new char[]{'A', 'A', 'A', 'B', 'B', 'C', 'C', 'D', 'E'}, 2));
+ System.out.println(leastInterval.leastInterval(new char[]{'A', 'A', 'A', 'B', 'B', 'B', 'C', 'C', 'C', 'D', 'D', 'D'}, 2));
+ }
+
+ /**
+ * 解题思路:
+ * 1、将任务按类型分组,正好A-Z用一个int[26]保存任务类型个数
+ * 2、对数组进行排序,优先排列个数(count)最大的任务,
+ * 如题得到的时间至少为 retCount =(count-1)* (n+1) + 1 ==> A->X->X->A->X->X->A(X为其他任务或者待命)
+ * 3、再排序下一个任务,如果下一个任务B个数和最大任务数一致,
+ * 则retCount++ ==> A->B->X->A->B->X->A->B
+ * 4、如果空位都插满之后还有任务,那就随便在这些间隔里面插入就可以,因为间隔长度肯定会大于n,在这种情况下就是任务的总数是最小所需时间
+ *
+ * @param tasks
+ * @param n
+ * @return
+ */
+ public int leastInterval(char[] tasks, int n) {
+ if (tasks.length <= 1 || n < 1) return tasks.length;
+ //步骤1
+ int[] counts = new int[26];
+ for (int i = 0; i < tasks.length; i++) {
+ counts[tasks[i] - 'A']++;
+ }
+ //步骤2
+ Arrays.sort(counts);
+ int maxCount = counts[25];
+ int retCount = (maxCount - 1) * (n + 1) + 1;
+ int i = 24;
+ //步骤3
+ while (i >= 0 && counts[i] == maxCount) {
+ retCount++;
+ i--;
+ }
+ //步骤4
+ return Math.max(retCount, tasks.length);
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_639_numDecodings.java b/src/pp/arithmetic/leetcode/_639_numDecodings.java
new file mode 100644
index 0000000..f57ca69
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_639_numDecodings.java
@@ -0,0 +1,102 @@
+package pp.arithmetic.leetcode;
+
+/**
+ * Created by wangpeng on 2019-04-26.
+ * 639. 解码方法 2
+ *
+ * 一条包含字母 A-Z 的消息通过以下的方式进行了编码:
+ *
+ * 'A' -> 1
+ * 'B' -> 2
+ * ...
+ * 'Z' -> 26
+ * 除了上述的条件以外,现在加密字符串可以包含字符 '*'了,字符'*'可以被当做1到9当中的任意一个数字。
+ *
+ * 给定一条包含数字和字符'*'的加密信息,请确定解码方法的总数。
+ *
+ * 同时,由于结果值可能会相当的大,所以你应当对10^9 + 7取模。(翻译者标注:此处取模主要是为了防止溢出)
+ *
+ * 示例 1 :
+ *
+ * 输入: "*"
+ * 输出: 9
+ * 解释: 加密的信息可以被解密为: "A", "B", "C", "D", "E", "F", "G", "H", "I".
+ * 示例 2 :
+ *
+ * 输入: "1*"
+ * 输出: 9 + 9 = 18(翻译者标注:这里1*可以分解为1,* 或者当做1*来处理,所以结果是9+9=18)
+ * 说明 :
+ *
+ * 输入的字符串长度范围是 [1, 10^5]。
+ * 输入的字符串只会包含字符 '*' 和 数字'0' - '9'。
+ *
+ * @see decode-ways-ii
+ */
+public class _639_numDecodings {
+
+ public static void main(String[] args) {
+ _639_numDecodings numDecodings = new _639_numDecodings();
+ System.out.println(numDecodings.numDecodings("1*"));
+ }
+
+ public static final int mod = (int) Math.pow(10, 9) + 7;
+
+ /**
+ * LO上优秀解法
+ * 解题关键点,理清楚各种情况下的个数可能性
+ *
+ * @param s
+ * @return
+ */
+ public int numDecodings(String s) {
+ if (s == null || s.length() == 0) {
+ return 0;
+ }
+ char[] str = s.toCharArray();
+
+ long[] dp = new long[str.length + 1];
+ dp[str.length] = 1;
+ for (int i = str.length - 1; i >= 0; i--) {
+ if (str[i] == '0') {
+ dp[i] = 0;
+ } else {
+ long res = dp[i + 1];
+ if (str[i] == '*') {
+ res = (9 * res) % mod;
+ }
+ if (i + 1 < str.length) {
+ long tmp = dp[i + 2];
+ if (str[i] != '*') {
+ if (str[i + 1] != '*') {
+ if ((str[i] - '0') * 10 + str[i + 1] - '0' < 27) {
+ res = (res + tmp) % mod;
+ }
+ } else {
+ if (str[i] < '3') {
+ if (str[i] == '1') {
+ res = (res + 9 * tmp) % mod;
+ } else if (str[i] == '2') {
+ res = (res + 6 * (tmp)) % mod;
+ }
+ }
+ }
+ } else {
+ if (str[i + 1] != '*') {
+ if (10 + str[i + 1] - '0' < 27) {
+ res = (res + tmp) % mod;
+ }
+ if (20 + str[i + 1] - '0' < 27) {
+ res = (res + tmp) % mod;
+ }
+ } else {
+ res = (res + 15 * tmp) % mod;
+ }
+ }
+ }
+ dp[i] = res;
+ }
+ }
+
+ return (int) (dp[0]);
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_647_countSubstrings.java b/src/pp/arithmetic/leetcode/_647_countSubstrings.java
new file mode 100644
index 0000000..3b02804
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_647_countSubstrings.java
@@ -0,0 +1,140 @@
+package pp.arithmetic.leetcode;
+
+import java.util.Stack;
+
+/**
+ * Created by wangpeng on 2019-09-26.
+ * 647. 回文子串
+ *
+ * 给定一个字符串,你的任务是计算这个字符串中有多少个回文子串。
+ *
+ * 具有不同开始位置或结束位置的子串,即使是由相同的字符组成,也会被计为是不同的子串。
+ *
+ * 示例 1:
+ *
+ * 输入: "abc"
+ * 输出: 3
+ * 解释: 三个回文子串: "a", "b", "c".
+ * 示例 2:
+ *
+ * 输入: "aaa"
+ * 输出: 6
+ * 说明: 6个回文子串: "a", "a", "a", "aa", "aa", "aaa".
+ * 注意:
+ *
+ * 输入的字符串长度不会超过1000。
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/palindromic-substrings
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _647_countSubstrings {
+ public static void main(String[] args) {
+ _647_countSubstrings countSubstrings = new _647_countSubstrings();
+ //1
+ System.out.println(countSubstrings.countSubstrings("abc"));
+ System.out.println(countSubstrings.countSubstrings("aaa"));
+ System.out.println(countSubstrings.countSubstrings("abab"));
+ //2
+ System.out.println(countSubstrings.countSubstrings2("abc"));
+ System.out.println(countSubstrings.countSubstrings2("aaa"));
+ System.out.println(countSubstrings.countSubstrings2("abab"));
+ //3
+ System.out.println(countSubstrings.countSubstrings3("abc"));
+ System.out.println(countSubstrings.countSubstrings3("aaa"));
+ System.out.println(countSubstrings.countSubstrings3("abab"));
+
+ }
+
+ /**
+ * 解法一:
+ * 定义两个指针,从0到len判断所有的回文可能性,性能不一定高,结果一定对(时间复杂度O(n^3))
+ * 执行用时 :116 ms, 在所有 Java 提交中击败了12.26%的用户
+ * 内存消耗 :34.3 MB, 在所有 Java 提交中击败了92.34%的用户
+ *
+ * 解法二:{@link _647_countSubstrings#countSubstrings2(String)}
+ *
+ * 解法三:{@link _647_countSubstrings#countSubstrings3(String)}
+ *
+ * @param s
+ * @return
+ */
+ public int countSubstrings(String s) {
+ int retCount = 0;
+ int start, end;
+ for (start = 0; start < s.length(); start++) {
+ for (end = start; end < s.length(); end++) {
+ if (isPalindrome(s, start, end)) {
+ retCount++;
+ }
+ }
+ }
+
+ return retCount;
+ }
+
+ private boolean isPalindrome(String s, int start, int end) {
+ while (start <= end) {
+ if (s.charAt(start) != s.charAt(end)) {
+ return false;
+ }
+ start++;
+ end--;
+ }
+ return true;
+ }
+
+ /**
+ * 解法二:中心扩展==>时间复杂度O(n^2)
+ * 从中心(区分1个点的中心还是两个点的中心)向两边同时扩散,如左右两边都相等则是回文,继续扩散
+ *
+ * 执行用时 :2 ms , 在所有 Java 提交中击败了99.02%的用户
+ * 内存消耗 :34 MB, 在所有 Java 提交中击败了92.79%的用户
+ *
+ * @param s
+ * @return
+ */
+ public int countSubstrings2(String s) {
+ int res = 0;
+ for (int i = 0; i < s.length(); i++) {
+ //分奇偶考虑
+ res += countSegment(s, i, i);
+ res += countSegment(s, i, i + 1);
+ }
+ return res;
+ }
+
+ //start往左边跑,end往右边跑, 判断s[start, end]是否为回文
+ public int countSegment(String s, int start, int end) {
+ int count = 0;
+ while (start >= 0 && end < s.length() && s.charAt(start--) == s.charAt(end++))
+ count++;
+ return count;
+ }
+
+ /**
+ * 解法三:动态规划==>时间复杂度O(n^2)
+ * 基本原理同解法二,只是用动态规划的方式求解出来了
+ *
+ * 执行用时 :11 ms, 在所有 Java 提交中击败了47.66%的用户
+ * 内存消耗 :35.6 MB, 在所有 Java 提交中击败了86.94%的用户
+ * @param s
+ * @return
+ */
+ public static int countSubstrings3(String s) {
+ int result = 0;
+ boolean[][] dp = new boolean[s.length()][s.length()];
+
+ for (int i = s.length()-1; i >=0 ; i--) {
+ for (int j = i; j < s.length(); j++) {
+ if (i==j)
+ dp[i][j] = true;
+ else
+ dp[i][j] = s.charAt(i)==s.charAt(j) && (j<=i+1 || dp[i+1][j-1]);
+ if (dp[i][j]) result++;
+ }
+ }
+
+ return result;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_65_isNumber.java b/src/pp/arithmetic/leetcode/_65_isNumber.java
new file mode 100644
index 0000000..abc25b4
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_65_isNumber.java
@@ -0,0 +1,167 @@
+package pp.arithmetic.leetcode;
+
+/**
+ * Created by wangpeng on 2019-10-18.
+ * 65. 有效数字
+ *
+ * 验证给定的字符串是否可以解释为十进制数字。
+ *
+ * 例如:
+ *
+ * "0" => true
+ * " 0.1 " => true
+ * "abc" => false
+ * "1 a" => false
+ * "2e10" => true
+ * " -90e3 " => true
+ * " 1e" => false
+ * "e3" => false
+ * " 6e-1" => true
+ * " 99e2.5 " => false
+ * "53.5e93" => true
+ * " --6 " => false
+ * "-+3" => false
+ * "95a54e53" => false
+ *
+ * 说明: 我们有意将问题陈述地比较模糊。在实现代码之前,你应当事先思考所有可能的情况。这里给出一份可能存在于有效十进制数字中的字符列表:
+ *
+ * 数字 0-9
+ * 指数 - "e"
+ * 正/负号 - "+"/"-"
+ * 小数点 - "."
+ * 当然,在输入中,这些字符的上下文也很重要。
+ *
+ * 更新于 2015-02-10:
+ * C++函数的形式已经更新了。如果你仍然看见你的函数接收 const char * 类型的参数,请点击重载按钮重置你的代码
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/valid-number
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _65_isNumber {
+
+ public static void main(String[] args) {
+ _65_isNumber isNumber = new _65_isNumber();
+ /**
+ *
+ * "0" => true
+ * " 0.1 " => true
+ * "abc" => false
+ * "1 a" => false
+ * "2e10" => true
+ * " -90e3 " => true
+ * " 1e" => false
+ * "e3" => false
+ * " 6e-1" => true
+ * " 99e2.5 " => false
+ * "53.5e93" => true
+ * " --6 " => false
+ * "-+3" => false
+ * "95a54e53" => false
+ */
+ System.out.println(isNumber.isNumber("+.8")); //true
+ System.out.println(isNumber.isNumber("-e58 ")); //false
+ System.out.println(isNumber.isNumber("3.")); //true
+ System.out.println(isNumber.isNumber("01")); //true
+ System.out.println(isNumber.isNumber(".1")); //true
+ System.out.println(isNumber.isNumber("0")); //true
+ System.out.println(isNumber.isNumber("0.1")); //true
+ System.out.println(isNumber.isNumber("abc")); //false
+ System.out.println(isNumber.isNumber("1 a")); //false
+ System.out.println(isNumber.isNumber("2e10")); //true
+ System.out.println(isNumber.isNumber("-90e3")); //true
+ System.out.println(isNumber.isNumber(" 1e")); //false
+ System.out.println(isNumber.isNumber("e3")); //false
+ System.out.println(isNumber.isNumber(" 6e-1")); //true
+ System.out.println(isNumber.isNumber(" 99e2.5"));//false
+ System.out.println(isNumber.isNumber("53.5e93"));//true
+ System.out.println(isNumber.isNumber(" --6")); //false
+ System.out.println(isNumber.isNumber("-+3")); //false
+ System.out.println(isNumber.isNumber("95a54e53"));//false
+ }
+
+ /**
+ * 解题思路:
+ * 本题最大的难点在于各种情况互相依赖,后面想了想,每种情况只关注自己该放的位置就可以了
+ * caseTest有1400多个,情况比较多,导致提交多次,比较全的caseTest参考上面链接
+ * 1、输入左右可能有空格,先去除左右空格
+ * 2、对于length==1的情况,直接判断是否是0-9
+ * 3、添加几个计数器减少循环次数(e的个数、小数点的个数、+,-的个数)
+ * 4、开始循环
+ * 5、对于数字:直接continue,01都是满足条件的
+ * 6、对于+\-:最多出现2次(最前面和e的后面),出现直接可以跟数字和.
+ * 7、对于e:最多出现1次,出现的位置不能在头和尾
+ * 8、对于.:最多1个点,如果之前出现过 e ,则后续不允许有点,出现以后其前后至少有一个数字 .1
+ *
+ *
+ * 执行用时 :3 ms, 在所有 java 提交中击败了94.47%的用户
+ * 内存消耗 :36 MB, 在所有 java 提交中击败了89.15%的用户
+ * @param s
+ * @return
+ */
+ public boolean isNumber(String s) {
+ //1、输入左右可能有空格,先去除左右空格
+ s = s.trim();
+ //2、对于length==1的情况,直接判断是否是0-9
+ if (s.length() == 0) return false;
+ if (s.length() == 1) {
+ return isNumber(s.charAt(0));
+ }
+
+ //3、添加几个计数器减少循环次数
+ //e的个数
+ int eCount = 0;
+ //小数点的个数
+ int dCount = 0;
+ //+,-的个数
+ int oCount = 0;
+
+ //4
+ for (int i = 0; i < s.length(); i++) {
+ char c = s.charAt(i);
+ if (isNumber(c)) {
+ //5:直接continue,01都是满足条件的
+ } else if (c == '-' || c == '+') {
+ //6:最多出现2次(最前面和e的后面),出现直接可以跟数字和.
+ if (oCount > 1) return false;
+ //对满足条件的取反
+ if (!((i == 0 && (isNumber(s.charAt(i + 1)) || s.charAt(i + 1) == '.')) || (i > 0 && i < s.length() - 1 && s.charAt(i - 1) == 'e'))) {
+ return false;
+ }
+ oCount++;
+ } else if (c == 'e') {
+ //7、对于e:最多出现1次,出现的位置不能在头和尾
+ if (eCount > 0) return false;
+ if (!(i > 0 && i < s.length() - 1)) {
+ return false;
+ }
+ eCount++;
+ } else if (c == '.') {
+ //8、对于.:最多1个点,如果之前出现过 e ,则后续不允许有点,出现以后其前后至少有一个数字 .1
+ if (dCount > 0 || eCount > 0) return false;
+ //点前后必须有一个数字
+ if (i == 0) {
+ if (!isNumber(s.charAt(i + 1)))
+ return false;
+ } else if (i == s.length() - 1) {
+ if (!isNumber(s.charAt(i - 1)))
+ return false;
+ } else {
+ if (!isNumber(s.charAt(i + 1)) && !isNumber(s.charAt(i - 1))) {
+ return false;
+ }
+ }
+ dCount++;
+ } else {
+ return false;
+ }
+ }
+
+ return true;
+ }
+
+ private boolean isNumber(char c) {
+ return c >= '0' && c <= '9';
+ }
+
+}
diff --git a/src/pp/arithmetic/leetcode/_66_plusOne.java b/src/pp/arithmetic/leetcode/_66_plusOne.java
new file mode 100644
index 0000000..4a52270
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_66_plusOne.java
@@ -0,0 +1,71 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * Created by wangpeng on 2019-10-19.
+ * 66. 加一
+ *
+ * 给定一个由整数组成的非空数组所表示的非负整数,在该数的基础上加一。
+ *
+ * 最高位数字存放在数组的首位, 数组中每个元素只存储单个数字。
+ *
+ * 你可以假设除了整数 0 之外,这个整数不会以零开头。
+ *
+ * 示例 1:
+ *
+ * 输入: [1,2,3]
+ * 输出: [1,2,4]
+ * 解释: 输入数组表示数字 123。
+ * 示例 2:
+ *
+ * 输入: [4,3,2,1]
+ * 输出: [4,3,2,2]
+ * 解释: 输入数组表示数字 4321。
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/plus-one
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _66_plusOne {
+
+ public static void main(String[] args) {
+ _66_plusOne plusOne = new _66_plusOne();
+ Util.printArray(plusOne.plusOne(new int[]{1, 2, 3}));
+ Util.printArray(plusOne.plusOne(new int[]{4, 3, 2, 1}));
+ Util.printArray(plusOne.plusOne(new int[]{9, 9, 9}));
+ Util.printArray(plusOne.plusOne(new int[]{0}));
+ Util.printArray(plusOne.plusOne(new int[]{9}));
+ }
+
+ /**
+ * 解题思路:
+ * 一道算数加法+1,需要注意两种情况:
+ * 1、低位向高位进位 ==> 从末尾开始遍历
+ * 2、整数头需要进位 ==> 构建一个新数组保存返回结果
+ *
+ * @param digits
+ * @return
+ */
+ public int[] plusOne(int[] digits) {
+ List
+ * 给定两个二进制字符串,返回他们的和(用二进制表示)。
+ *
+ * 输入为非空字符串且只包含数字 1 和 0。
+ *
+ * 示例 1:
+ *
+ * 输入: a = "11", b = "1"
+ * 输出: "100"
+ * 示例 2:
+ *
+ * 输入: a = "1010", b = "1011"
+ * 输出: "10101"
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/add-binary
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _67_addBinary {
+
+ public static void main(String[] args) {
+ _67_addBinary addBinary = new _67_addBinary();
+ System.out.println(addBinary.addBinary("11", "1"));
+ System.out.println(addBinary.addBinary("1010", "1011"));
+ System.out.println(addBinary.addBinary("1111", "1111"));
+ }
+
+ /**
+ * 解题思路:
+ * 从低位开始累加,注意两边字符串不一致,提高执行效率不要使用StringBuilder
+ *
+ * 执行用时 :1 ms, 在所有 java 提交中击败了100.00%的用户
+ * 内存消耗 :36 MB, 在所有 java 提交中击败了55.45%的用户
+ *
+ * @param a
+ * @param b
+ * @return
+ */
+ public String addBinary(String a, String b) {
+ int i = a.length() - 1;
+ int j = b.length() - 1;
+ int carry = 0;
+ char[] result = new char[Math.max(i, j) + 1];
+ int pos = result.length - 1;
+ while (i >= 0 || j >= 0) {
+ int sum = carry;
+ if (i >= 0) {
+ sum += a.charAt(i--) - '0';
+ }
+ if (j >= 0) {
+ sum += b.charAt(j--) - '0';
+ }
+ //>>1 代表 /2,进位
+ carry = sum >> 1;
+ //sum & 0x01 ==> 进位后只取低位
+ result[pos--] = (char) ((sum & 0x01) + '0');
+ }
+ if (carry > 0) { //最后有进位,直接进行数据拼接,防止数组越界
+ return "1" + String.valueOf(result);
+ }
+ return String.valueOf(result);
+ }
+}
+
diff --git a/src/pp/arithmetic/leetcode/_68_fullJustify.java b/src/pp/arithmetic/leetcode/_68_fullJustify.java
new file mode 100644
index 0000000..7758884
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_68_fullJustify.java
@@ -0,0 +1,178 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * Created by wangpeng on 2019-10-22.
+ * 68. 文本左右对齐
+ *
+ * 给定一个单词数组和一个长度 maxWidth,重新排版单词,使其成为每行恰好有 maxWidth 个字符,且左右两端对齐的文本。
+ *
+ * 你应该使用“贪心算法”来放置给定的单词;也就是说,尽可能多地往每行中放置单词。必要时可用空格 ' ' 填充,使得每行恰好有 maxWidth 个字符。
+ *
+ * 要求尽可能均匀分配单词间的空格数量。如果某一行单词间的空格不能均匀分配,则左侧放置的空格数要多于右侧的空格数。
+ *
+ * 文本的最后一行应为左对齐,且单词之间不插入额外的空格。
+ *
+ * 说明:
+ *
+ * 单词是指由非空格字符组成的字符序列。
+ * 每个单词的长度大于 0,小于等于 maxWidth。
+ * 输入单词数组 words 至少包含一个单词。
+ * 示例:
+ *
+ * 输入:
+ * words = ["This", "is", "an", "example", "of", "text", "justification."]
+ * maxWidth = 16
+ * 输出:
+ * [
+ * "This is an",
+ * "example of text",
+ * "justification. "
+ * ]
+ * 示例 2:
+ *
+ * 输入:
+ * words = ["What","must","be","acknowledgment","shall","be"]
+ * maxWidth = 16
+ * 输出:
+ * [
+ * "What must be",
+ * "acknowledgment ",
+ * "shall be "
+ * ]
+ * 解释: 注意最后一行的格式应为 "shall be " 而不是 "shall be",
+ * 因为最后一行应为左对齐,而不是左右两端对齐。
+ * 第二行同样为左对齐,这是因为这行只包含一个单词。
+ * 示例 3:
+ *
+ * 输入:
+ * words = ["Science","is","what","we","understand","well","enough","to","explain",
+ * "to","a","computer.","Art","is","everything","else","we","do"]
+ * maxWidth = 20
+ * 输出:
+ * [
+ * "Science is what we",
+ * "understand well",
+ * "enough to explain to",
+ * "a computer. Art is",
+ * "everything else we",
+ * "do "
+ * ]
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/text-justification
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _68_fullJustify {
+
+ public static void main(String[] args) {
+ _68_fullJustify fullJustify = new _68_fullJustify();
+ Util.printStringList(fullJustify.fullJustify(new String[]{"This", "is", "an", "example", "of", "text", "justification."},16));
+ Util.printStringList(fullJustify.fullJustify(new String[]{"What","must","be","acknowledgment","shall","be"},16));
+ Util.printStringList(fullJustify.fullJustify(new String[]{"Science","is","what","we","understand","well","enough","to","explain", "to","a","computer.","Art","is","everything","else","we","do"},20));
+ }
+
+ /**
+ * 解题思路:
+ * 大致想法:先确定一行放几个单词,再跟根据条件对单词进行排序
+ * 1、一行能放几个单词:
+ * 1.1:一个单词放下去之后占的位置是length+1(单词和单词直接至少有一个空格)
+ * 1.2:按照1.1的规则循环直到需要的长度>maxWidth
+ * 2、跟根据条件对单词进行排序:
+ * 2.1:对于只有一个单词的行,直接从左开始摆放
+ * 2.2:对于只有2个单词的行,最左和最右摆放
+ * 2.3:对于多余2个单词的行,先计算单词直接平均空格有多少个,剩余空格从左到右一个单词后逐个排布(肯定不会超过总单词数)
+ * 2.4:如是最后一行,则直接从左开始排序
+ *
+ * 存储结构:maxWidth长度的数组保存
+ *
+ * 执行用时 :1 ms, 在所有 java 提交中击败了99.05%的用户
+ * 内存消耗 :34.9 MB, 在所有 java 提交中击败了40.26%的用户
+ *
+ * @param words
+ * @param maxWidth
+ * @return
+ */
+ public List
+ * 给定两个单词 word1 和 word2,计算出将 word1 转换成 word2 所使用的最少操作数 。
+ *
+ * 你可以对一个单词进行如下三种操作:
+ *
+ * 插入一个字符
+ * 删除一个字符
+ * 替换一个字符
+ * 示例 1:
+ *
+ * 输入: word1 = "horse", word2 = "ros"
+ * 输出: 3
+ * 解释:
+ * horse -> rorse (将 'h' 替换为 'r')
+ * rorse -> rose (删除 'r')
+ * rose -> ros (删除 'e')
+ * 示例 2:
+ *
+ * 输入: word1 = "intention", word2 = "execution"
+ * 输出: 5
+ * 解释:
+ * intention -> inention (删除 't')
+ * inention -> enention (将 'i' 替换为 'e')
+ * enention -> exention (将 'n' 替换为 'x')
+ * exention -> exection (将 'n' 替换为 'c')
+ * exection -> execution (插入 'u')
+ *
+ * @see edit-distance
+ */
+public class _72_minDistance {
+
+ public static void main(String[] args) {
+ _72_minDistance distance = new _72_minDistance();
+ System.out.println(distance.minDistance("horse", "ros"));
+ System.out.println(distance.minDistance("intention", "execution"));
+ }
+
+ /**
+ * 解题思路:
+ * 二维数组保存一一配对的所需的步数,int[][] dp
+ * w1 = "horse", w2 = "ros"
+ * 如果遍历的两个字符串相等,则步数不改变
+ * 如果不相等则步数一定+1
+ * 替换 dp[i-1][j-1]
+ * 插入 dp[i][j-1]
+ * 删除 dp[i-1][j]
+ * 取上面三个操作中的最小的一个
+ *
+ * @param word1
+ * @param word2
+ * @return
+ */
+ public int minDistance(String word1, String word2) {
+ int l1 = word1.length();
+ int l2 = word2.length();
+ int[][] dp = new int[l1 + 1][l2 + 1];
+ //初始化
+ for (int i = 0; i <= l1; i++) {
+ dp[i][0] = i;
+ }
+ for (int i = 0; i <= l2; i++) {
+ dp[0][i] = i;
+ }
+ for (int i = 1; i <= l1; i++) {
+ for (int j = 1; j <= l2; j++) {
+ if (word1.charAt(i - 1) == word2.charAt(j - 1))
+ dp[i][j] = dp[i - 1][j - 1];
+ else {
+ dp[i][j] = min(dp[i - 1][j - 1], min(dp[i - 1][j], dp[i][j - 1])) + 1;
+ }
+ }
+ }
+ return dp[l1][l2];
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_739_dailyTemperatures.java b/src/pp/arithmetic/leetcode/_739_dailyTemperatures.java
new file mode 100644
index 0000000..147f217
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_739_dailyTemperatures.java
@@ -0,0 +1,88 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+
+/**
+ * Created by wangpeng on 2019-09-27.
+ * 739. 每日温度
+ *
+ * 根据每日 气温 列表,请重新生成一个列表,对应位置的输入是你需要再等待多久温度才会升高超过该日的天数。如果之后都不会升高,请在该位置用 0 来代替。
+ *
+ * 例如,给定一个列表 temperatures = [73, 74, 75, 71, 69, 72, 76, 73],你的输出应该是 [1, 1, 4, 2, 1, 1, 0, 0]。
+ *
+ * 提示:气温 列表长度的范围是 [1, 30000]。每个气温的值的均为华氏度,都是在 [30, 100] 范围内的整数。
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/daily-temperatures
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _739_dailyTemperatures {
+
+ public static void main(String[] args) {
+ _739_dailyTemperatures dailyTemperatures = new _739_dailyTemperatures();
+ Util.printArray(dailyTemperatures.dailyTemperatures(new int[]{73, 74, 75, 71, 69, 72, 76, 73}));
+ Util.printArray(dailyTemperatures.dailyTemperatures2(new int[]{73, 74, 75, 71, 69, 72, 76, 73}));
+ }
+
+ /**
+ * 解题思路:
+ * 暴力求解,每计算一位都向后遍历求出大于其的首位位置 ==>时间复杂度O(n^2)
+ * 执行用时 :247 ms, 在所有 Java 提交中击败了32.89%的用户
+ * 内存消耗 :42 MB, 在所有 Java 提交中击败了 95.19%的用户
+ *
+ * 优化求解:{@link _739_dailyTemperatures#dailyTemperatures2(int[])}
+ *
+ * @param T
+ * @return
+ */
+ public int[] dailyTemperatures(int[] T) {
+ int[] ret = new int[T.length];
+ for (int i = 0; i < T.length; i++) {
+ for (int j = i+1; j < T.length; j++) {
+ if (T[j]>T[i]){
+ ret[i] = j-i;
+ break;
+ }
+ }
+ }
+
+ return ret;
+ }
+
+ /**
+ * 优化求解:
+ * 对于求解一来说,存在大量的重复计算,考虑是否可以利用之前的计算结果?
+ * 1、换个方向进行遍历,从右向左,对于最后一位来说肯定为0
+ * 2、对于下一位,如 > 后一位则看后一位对应的是否有大于其的温度,如有则跳到该位置,继续步骤2
+ * 3、如下一位 < 后一位,则直接标记为位置的差值
+ * 4、如碰到某个位置对应的最大温度数为0,则表示后面不会有更大的值,那当然当前值就应该也为0
+ *
+ * 执行用时 :5 ms, 在所有 Java 提交中击败了99.86%的用户
+ * 内存消耗 :42 MB, 在所有 Java 提交中击败了95.19%的用户
+ *
+ * @param T
+ * @return
+ */
+ public int[] dailyTemperatures2(int[] T) {
+ int length = T.length;
+ int[] ret = new int[length];
+
+ //1
+ for (int i = length - 2; i >= 0; i--) {
+ //2 += ret[j]
+ for (int j = i + 1; j < length; j+= ret[j]) {
+ if (T[j] > T[i]) {
+ //3
+ ret[i] = j - i;
+ break;
+ } else if (ret[j] == 0) { //4
+ ret[i] = 0;
+ break;
+ }
+ }
+ }
+
+ return ret;
+
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_73_setZeroes.java b/src/pp/arithmetic/leetcode/_73_setZeroes.java
new file mode 100644
index 0000000..9575df4
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_73_setZeroes.java
@@ -0,0 +1,121 @@
+package pp.arithmetic.leetcode;
+
+/**
+ * Created by wangpeng on 2019-10-23.
+ * 73. 矩阵置零
+ *
+ * 给定一个 m x n 的矩阵,如果一个元素为 0,则将其所在行和列的所有元素都设为 0。请使用原地算法。
+ *
+ * 示例 1:
+ *
+ * 输入:
+ * [
+ * [1,1,1],
+ * [1,0,1],
+ * [1,1,1]
+ * ]
+ * 输出:
+ * [
+ * [1,0,1],
+ * [0,0,0],
+ * [1,0,1]
+ * ]
+ * 示例 2:
+ *
+ * 输入:
+ * [
+ * [0,1,2,0],
+ * [3,4,5,2],
+ * [1,3,1,5]
+ * ]
+ * 输出:
+ * [
+ * [0,0,0,0],
+ * [0,4,5,0],
+ * [0,3,1,0]
+ * ]
+ * 进阶:
+ *
+ * 一个直接的解决方案是使用 O(mn) 的额外空间,但这并不是一个好的解决方案。
+ * 一个简单的改进方案是使用 O(m + n) 的额外空间,但这仍然不是最好的解决方案。
+ * 你能想出一个常数空间的解决方案吗?
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/set-matrix-zeroes
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _73_setZeroes {
+
+ public static void main(String[] args) {
+ _73_setZeroes setZeroes = new _73_setZeroes();
+ int[][] matrix = new int[][]{
+ {1, 1, 1},
+ {0, 1, 2}
+ };
+ setZeroes.setZeroes(matrix);
+ int[][] matrix1 = new int[][]{
+ {1, 1, 1},
+ {1, 0, 1},
+ {1, 1, 1}
+ };
+ setZeroes.setZeroes(matrix1);
+ int[][] matrix2 = new int[][]{
+ {0, 1, 2, 0},
+ {3, 4, 5, 2},
+ {1, 3, 1, 5}
+ };
+ setZeroes.setZeroes(matrix2);
+ }
+
+ /**
+ * 难点在于:使用常数空间,我们先来看不适用常数空间咋解决
+ * O(mn):直接生成一个同等大小的矩阵,遍历原始矩阵,遇0将新矩阵横竖都设置为0
+ * O(m+n):两个set分别保存有0的横和竖列,遍历结束直接将set中的横竖设0
+ * 解题思路:
+ * 1、利用矩阵的第一行和第一列保存有0的行和列
+ * 2、需要考虑下特殊情况的[0,0],这个位置可能是横列、纵列、自身导致赋的0
+ *
+ * 执行用时 :1 ms, 在所有 java 提交中击败了100.00%的用户
+ * 内存消耗 :43.3 MB, 在所有 java 提交中击败了97.83%的用户
+ *
+ * @param matrix
+ */
+ public void setZeroes(int[][] matrix) {
+ boolean isCol = false;
+ int row = matrix.length;
+ int col = matrix[0].length;
+
+ //使用第一行、第一列标记0
+ for (int i = 0; i < row; i++) {
+ if (matrix[i][0] == 0) {
+ isCol = true;
+ }
+ for (int j = 1; j < col; j++) {
+ if (matrix[i][j] == 0) {
+ matrix[i][0] = 0;
+ matrix[0][j] = 0;
+ }
+ }
+ }
+ //横、竖列置0
+ for (int i = 1; i < row; i++) {
+ for (int j = 1; j < col; j++) {
+ if (matrix[i][0] ==0 || matrix[0][j] == 0) {
+ matrix[i][j] = 0;
+ }
+ }
+ }
+ //[0,0]为0的时候,需要特殊判断下是横还是纵
+ if (matrix[0][0] == 0) {
+ for (int j = 0; j < col; j++) {
+ matrix[0][j] = 0;
+ }
+ }
+
+ if (isCol) {
+ for (int i = 0; i < row; i++) {
+ matrix[i][0] = 0;
+ }
+ }
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_746_minCostClimbingStairs.java b/src/pp/arithmetic/leetcode/_746_minCostClimbingStairs.java
new file mode 100644
index 0000000..44b6d18
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_746_minCostClimbingStairs.java
@@ -0,0 +1,61 @@
+package pp.arithmetic.leetcode;
+
+/**
+ * Created by wangpeng on 2019-04-22.
+ * 746. 使用最小花费爬楼梯
+ *
+ * 数组的每个索引做为一个阶梯,第 i个阶梯对应着一个非负数的体力花费值 cost[i](索引从0开始)。
+ *
+ * 每当你爬上一个阶梯你都要花费对应的体力花费值,然后你可以选择继续爬一个阶梯或者爬两个阶梯。
+ *
+ * 您需要找到达到楼层顶部的最低花费。在开始时,你可以选择从索引为 0 或 1 的元素作为初始阶梯。
+ *
+ * 示例 1:
+ *
+ * 输入: cost = [10, 15, 20]
+ * 输出: 15
+ * 解释: 最低花费是从cost[1]开始,然后走两步即可到阶梯顶,一共花费15。
+ * 示例 2:
+ *
+ * 输入: cost = [1, 100, 1, 1, 1, 100, 1, 1, 100, 1]
+ * 输出: 6
+ * 解释: 最低花费方式是从cost[0]开始,逐个经过那些1,跳过cost[3],一共花费6。
+ * 注意:
+ *
+ * cost 的长度将会在 [2, 1000]。
+ * 每一个 cost[i] 将会是一个Integer类型,范围为 [0, 999]。
+ *
+ * @see min-cost-climbing-stairs
+ */
+public class _746_minCostClimbingStairs {
+
+ public static void main(String[] args) {
+ _746_minCostClimbingStairs stairs = new _746_minCostClimbingStairs();
+ System.out.println(stairs.minCostClimbingStairs(new int[]{10, 15, 20}));
+ System.out.println(stairs.minCostClimbingStairs(new int[]{1, 100, 1, 1, 1, 100, 1, 1, 100, 1}));
+ System.out.println(stairs.minCostClimbingStairs(new int[]{2, 1000}));
+ }
+
+ /**
+ * 解题思路:
+ * 动态规划解题四部曲,可供参考
+ *
+ * - 确认原问题与子问题=>原问题:走完楼梯花费的最小体力,子问题:第i步花的最小体力
+ * - 确认状态=>本题的动态规划状态单一,第i个状态即为i阶台阶的所花费的最小体力
+ * - 确认边界状态的值=>第1步=cost[0],第2步=min(cost[0],cost[1])
+ * - 确定状态转移方程=>dp[i] = Math.min(dp[i - 2] + cost[i - 2], dp[i - 1] + cost[i - 1]);
+ *
+ * @param cost
+ * @return
+ */
+ public int minCostClimbingStairs(int[] cost) {
+ int length = cost.length + 1;
+ int[] dp = new int[length];
+ dp[0] = 0;
+ dp[1] = 0;
+ for (int i = 2; i < length; i++) {
+ dp[i] = Math.min(dp[i - 2] + cost[i - 2], dp[i - 1] + cost[i - 1]);
+ }
+ return dp[length - 1];
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_74_searchMatrix.java b/src/pp/arithmetic/leetcode/_74_searchMatrix.java
new file mode 100644
index 0000000..e63ee26
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_74_searchMatrix.java
@@ -0,0 +1,107 @@
+package pp.arithmetic.leetcode;
+
+/**
+ * Created by wangpeng on 2019-10-24.
+ * 74. 搜索二维矩阵
+ *
+ * 编写一个高效的算法来判断 m x n 矩阵中,是否存在一个目标值。该矩阵具有如下特性:
+ *
+ * 每行中的整数从左到右按升序排列。
+ * 每行的第一个整数大于前一行的最后一个整数。
+ * 示例 1:
+ *
+ * 输入:
+ * matrix = [
+ * [1, 3, 5, 7],
+ * [10, 11, 16, 20],
+ * [23, 30, 34, 50]
+ * ]
+ * target = 3
+ * 输出: true
+ * 示例 2:
+ *
+ * 输入:
+ * matrix = [
+ * [1, 3, 5, 7],
+ * [10, 11, 16, 20],
+ * [23, 30, 34, 50]
+ * ]
+ * target = 13
+ * 输出: false
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/search-a-2d-matrix
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _74_searchMatrix {
+
+ public static void main(String[] args) {
+ int[][] matrix = new int[][]{
+ {1, 3, 5, 7},
+ {10, 11, 16, 20},
+ {23, 30, 34, 50}
+ };
+ _74_searchMatrix searchMatrix = new _74_searchMatrix();
+ System.out.println(searchMatrix.searchMatrix(matrix,1));
+ System.out.println(searchMatrix.searchMatrix(matrix,3));
+ System.out.println(searchMatrix.searchMatrix(matrix,5));
+ System.out.println(searchMatrix.searchMatrix(matrix,7));
+ System.out.println(searchMatrix.searchMatrix(matrix,10));
+ System.out.println(searchMatrix.searchMatrix(matrix,11));
+ System.out.println(searchMatrix.searchMatrix(matrix,16));
+ System.out.println(searchMatrix.searchMatrix(matrix,20));
+ System.out.println(searchMatrix.searchMatrix(matrix,23));
+ System.out.println(searchMatrix.searchMatrix(matrix,50));
+ System.out.println(searchMatrix.searchMatrix(matrix,13));
+ System.out.println(searchMatrix.searchMatrix(matrix,40));
+ }
+
+ /**
+ * 解题思路:
+ * 整个矩阵类似一个有序的升序数组,考虑使用二分查找是否存在目标值
+ * 难点:中间点的计算
+ * 1.利用公式计算起点和终点之间的差:(ex - sx) * col + ey - sy,
+ * 2.中间点距离起点的步数:ml = ((ex - sx) * col + ey - sy) / 2
+ * 3.mx = sx + (ml + sy) / col <== 起点+偏移计算出中间点的x
+ * 4.my = ml + sy - (mx - sx) * col <== 根据第一步的公式,代入mx,计算出my
+ * 5.利用二分查找的规则判断出结果
+ *
+ * 执行用时 :0 ms, 在所有 java 提交中击败了100.00%的用户
+ * 内存消耗 :42.6 MB, 在所有 java 提交中击败了39.56%的用户
+ *
+ * @param matrix
+ * @param target
+ * @return
+ */
+ public boolean searchMatrix(int[][] matrix, int target) {
+ if (matrix == null || matrix.length == 0) return false;
+ int row = matrix.length;
+ int col = matrix[0].length;
+ if (col == 0) return false;
+ int sx = 0, sy = 0, ex = row - 1, ey = col - 1;
+ if (target < matrix[sx][sy] || target > matrix[ex][ey]) return false;
+ int mx, my, ml;
+ while (sx * col + sy <= ex * col + ey) {
+ //计算中间点
+ ml = ((ex - sx) * col + ey - sy) / 2;
+ mx = sx + (ml + sy) / col;
+ my = ml + sy - (mx - sx) * col;
+ int middle = matrix[mx][my];
+ if (middle == target) return true;
+ //防止无法退出
+ if (ml == 0) {
+ if (matrix[ex][ey] == target) return true;
+ return false;
+ }
+ if (middle > target) {
+ ex = mx;
+ ey = my;
+ } else {
+ sx = mx;
+ sy = my;
+ }
+ }
+
+ return false;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_75_sortColors.java b/src/pp/arithmetic/leetcode/_75_sortColors.java
new file mode 100644
index 0000000..2ee6eed
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_75_sortColors.java
@@ -0,0 +1,75 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+
+/**
+ * Created by wangpeng on 2019-07-04.
+ * 75. 颜色分类
+ *
+ * 给定一个包含红色、白色和蓝色,一共 n 个元素的数组,原地对它们进行排序,使得相同颜色的元素相邻,并按照红色、白色、蓝色顺序排列。
+ *
+ * 此题中,我们使用整数 0、 1 和 2 分别表示红色、白色和蓝色。
+ *
+ * 注意:
+ * 不能使用代码库中的排序函数来解决这道题。
+ *
+ * 示例:
+ *
+ * 输入: [2,0,2,1,1,0]
+ * 输出: [0,0,1,1,2,2]
+ * 进阶:
+ *
+ * 一个直观的解决方案是使用计数排序的两趟扫描算法。
+ * 首先,迭代计算出0、1 和 2 元素的个数,然后按照0、1、2的排序,重写当前数组。
+ * 你能想出一个仅使用常数空间的一趟扫描算法吗?
+ *
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/sort-colors
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _75_sortColors {
+
+ public static void main(String[] args) {
+ _75_sortColors sortColors = new _75_sortColors();
+ int[] nums = {2, 1, 2};
+ sortColors.sortColors(nums);
+ Util.printArray(nums);
+ }
+
+ /**
+ * 解题思路:
+ * 原地排序==>借助常量级的空间做中转,可以参考快排实现?
+ * 但是题目所需:你能想出一个仅使用常数空间的一趟扫描算法吗?(也就是说时间复杂度最好是O(n))
+ * 我们用三个指针(p0, p2 和curr)来分别追踪0的最右边界,2的最左边界和当前考虑的元素
+ * 此问题称为"荷兰国旗问题"
+ *
+ * @param nums
+ */
+ public void sortColors(int[] nums) {
+ // 对于所有 idx < i : nums[idx < i] = 0
+ // j是当前考虑元素的下标
+ int p0 = 0, curr = 0;
+ // 对于所有 idx > k : nums[idx > k] = 2
+ int p2 = nums.length - 1;
+
+ int tmp;
+ while (curr <= p2) {
+ if (nums[curr] == 0) {
+ // 交换第 p0个和第curr个元素
+ // i++,j++
+ tmp = nums[p0];
+ nums[p0++] = nums[curr];
+ nums[curr++] = tmp;
+ } else if (nums[curr] == 2) {
+ // 交换第k个和第curr个元素
+ // p2--
+ tmp = nums[curr];
+ nums[curr] = nums[p2];
+ nums[p2--] = tmp;
+ } else {
+ curr++;
+ }
+ }
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_77_combine.java b/src/pp/arithmetic/leetcode/_77_combine.java
new file mode 100644
index 0000000..61a5976
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_77_combine.java
@@ -0,0 +1,83 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+
+import java.util.ArrayList;
+import java.util.LinkedList;
+import java.util.List;
+
+/**
+ * Created by wangpeng on 2019-06-01.
+ * 77. 组合
+ *
+ * 给定两个整数 n 和 k,返回 1 ... n 中所有可能的 k 个数的组合。
+ *
+ * 示例:
+ *
+ * 输入: n = 4, k = 2
+ * 输出:
+ * [
+ * [2,4],
+ * [3,4],
+ * [2,3],
+ * [1,2],
+ * [1,3],
+ * [1,4],
+ * ]
+ *
+ * @see combinations
+ */
+public class _77_combine {
+ public static void main(String[] args) {
+ _77_combine combine = new _77_combine();
+ List
+ * 注意不能重复[2,3]和[3,2]是一个组合,排序重复的办法:后面取的数必须比之前的大
+ * 优化点:可以去除一些不必要的循环,如循环的终止条件不是<=n,而是<=n-k+index
+ *
+ * @param n
+ * @param k
+ * @return
+ */
+ public List
+ * 给定一个二维网格和一个单词,找出该单词是否存在于网格中。
+ *
+ * 单词必须按照字母顺序,通过相邻的单元格内的字母构成,其中“相邻”单元格是那些水平相邻或垂直相邻的单元格。同一个单元格内的字母不允许被重复使用。
+ *
+ * 示例:
+ *
+ * board =
+ * [
+ * ['A','B','C','E'],
+ * ['S','F','C','S'],
+ * ['A','D','E','E']
+ * ]
+ *
+ * 给定 word = "ABCCED", 返回 true.
+ * 给定 word = "SEE", 返回 true.
+ * 给定 word = "ABCB", 返回 false.
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/word-search
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _79_exist {
+
+ public static void main(String[] args) {
+ _79_exist exist = new _79_exist();
+ char[][] board = {
+ {'A', 'B', 'C', 'E'},
+ {'S', 'F', 'C', 'S'},
+ {'A', 'D', 'E', 'E'}
+ };
+ System.out.println(exist.exist(board, "ABCCED"));
+ System.out.println(exist.exist(board, "SEE"));
+ System.out.println(exist.exist(board, "ABCB"));
+ }
+
+ /**
+ * 解题思路:
+ * 初步构思,类似图的BFS
+ * 执行用时 :20 ms, 在所有 Java 提交中击败了21.03%的用户
+ * 内存消耗 :45 MB, 在所有 Java 提交中击败了75.00%的用户
+ *
+ * @param board
+ * @param word
+ * @return
+ */
+ public boolean exist(char[][] board, String word) {
+ if (board.length == 0) return false;
+ boolean[][] find = new boolean[board.length][board[0].length];
+ int wordIndex = 0;
+ boolean isExist;
+ for (int i = 0; i < board.length; i++) {
+ for (int j = 0; j < board[i].length; j++) {
+ if (board[i][j] == word.charAt(wordIndex)) {
+ isExist = bfs(board, find, i, j, 0, word);
+ if (isExist) {
+ return true;
+ }
+ }
+ }
+ }
+ return false;
+ }
+
+ int[][] rec = new int[][]{{-1, 0}, {0, 1}, {1, 0}, {0, -1}};
+
+ private boolean bfs(char[][] board, boolean[][] find, int rowI, int colI, int wordI, String word) {
+ if (wordI >= word.length()) {
+ return false;
+ }
+ if (rowI >= board.length) {
+ return false;
+ }
+ boolean isExist = false;
+ if (board[rowI][colI] == word.charAt(wordI)) {
+ //保存已遍历的结果,防止重复死循环找
+ find[rowI][colI] = true;
+ if (wordI == word.length() - 1) return true;
+ //向四个方向开始遍历
+ for (int i = 0; i < rec.length; i++) {
+ int nextRowI = rowI + rec[i][0];
+ int nextColI = colI + rec[i][1];
+ if (nextRowI < 0 || nextRowI >= board.length || nextColI < 0 || nextColI >= board[rowI].length) {
+ //位置越界
+ continue;
+ }
+ if (find[nextRowI][nextColI]) {
+ //已遍历过
+ continue;
+ }
+ //找到下一个单词,开始到下一个位置进行寻找
+ if (board[nextRowI][nextColI] == word.charAt(wordI + 1)) {
+ isExist = bfs(board, find, nextRowI, nextColI, wordI + 1, word);
+ }
+ if (isExist) {
+ break;
+ }
+ }
+ find[rowI][colI] = false;
+ }
+ return isExist;
+ }
+
+}
diff --git a/src/pp/arithmetic/leetcode/_81_search.java b/src/pp/arithmetic/leetcode/_81_search.java
new file mode 100644
index 0000000..fe1de19
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_81_search.java
@@ -0,0 +1,71 @@
+package pp.arithmetic.leetcode;
+
+/**
+ * Created by wangpeng on 2019-10-25.
+ * 81. 搜索旋转排序数组 II
+ *
+ * 假设按照升序排序的数组在预先未知的某个点上进行了旋转。
+ *
+ * ( 例如,数组 [0,0,1,2,2,5,6] 可能变为 [2,5,6,0,0,1,2] )。
+ *
+ * 编写一个函数来判断给定的目标值是否存在于数组中。若存在返回 true,否则返回 false。
+ *
+ * 示例 1:
+ *
+ * 输入: nums = [2,5,6,0,0,1,2], target = 0
+ * 输出: true
+ * 示例 2:
+ *
+ * 输入: nums = [2,5,6,0,0,1,2], target = 3
+ * 输出: false
+ * 进阶:
+ *
+ * 这是 搜索旋转排序数组 的延伸题目,本题中的 nums 可能包含重复元素。
+ * 这会影响到程序的时间复杂度吗?会有怎样的影响,为什么?
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/search-in-rotated-sorted-array-ii
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _81_search {
+
+ public static void main(String[] args) {
+ _81_search search = new _81_search();
+ System.out.println(search.search(new int[]{2, 5, 6, 0, 0, 1, 2}, 0));
+ System.out.println(search.search(new int[]{2, 5, 6, 0, 0, 1, 2}, 4));
+ System.out.println(search.search(new int[]{1, 1, 3, 1}, 3));
+ System.out.println(search.search(new int[]{3, 1, 1}, 3));
+ }
+
+ /**
+ * 解题思路:
+ * 整体解法类似 {@link _33_search},有序的数组使用二分查找效率最高,注意相同位置的判断
+ *
+ * @param nums
+ * @param target
+ * @return
+ */
+ public boolean search(int[] nums, int target) {
+ int left = 0;
+ int right = nums.length - 1;
+ while (left <= right) {
+ int mid = left + (right - left) / 2;
+ if (nums[mid] == target) return true;
+ if (nums[left] == nums[mid] && nums[mid] == nums[right]) {
+ left++;
+ right--;
+ } else if (nums[left] <= nums[mid]) { //确定左区间
+ if (nums[left] <= target && target < nums[mid])
+ right = mid - 1;
+ else
+ left = mid + 1;
+ } else { //确定右区间
+ if (nums[mid] < target && target <= nums[right])
+ left = mid + 1;
+ else
+ right = mid - 1;
+ }
+ }
+ return false;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_82_deleteDuplicates.java b/src/pp/arithmetic/leetcode/_82_deleteDuplicates.java
new file mode 100644
index 0000000..879d121
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_82_deleteDuplicates.java
@@ -0,0 +1,93 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+import pp.arithmetic.model.ListNode;
+
+/**
+ * Created by wangpeng on 2019-10-31.
+ * 82. 删除排序链表中的重复元素 II
+ *
+ * 给定一个排序链表,删除所有含有重复数字的节点,只保留原始链表中 没有重复出现 的数字。
+ *
+ * 示例 1:
+ *
+ * 输入: 1->2->3->3->4->4->5
+ * 输出: 1->2->5
+ * 示例 2:
+ *
+ * 输入: 1->1->1->2->3
+ * 输出: 2->3
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/remove-duplicates-from-sorted-list-ii
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _82_deleteDuplicates {
+
+ public static void main(String[] args) {
+ _82_deleteDuplicates deleteDuplicates = new _82_deleteDuplicates();
+ //1->2->3->3->4->4->5
+ ListNode head1 = new ListNode(1);
+ head1.next = new ListNode(2);
+ head1.next.next = new ListNode(3);
+ head1.next.next.next = new ListNode(3);
+ head1.next.next.next.next = new ListNode(4);
+ head1.next.next.next.next.next = new ListNode(4);
+ head1.next.next.next.next.next.next = new ListNode(5);
+ Util.printListNode(deleteDuplicates.deleteDuplicates(head1));
+ //1->1->1->2->3
+ ListNode head2 = new ListNode(1);
+ head2.next = new ListNode(1);
+ head2.next.next = new ListNode(1);
+ head2.next.next.next = new ListNode(2);
+ head2.next.next.next.next = new ListNode(3);
+ Util.printListNode(deleteDuplicates.deleteDuplicates(head2));
+ }
+
+ /**
+ * 解题思路:
+ * 对于链表类型的题目,就是按照next的指针进行遍历,找到题目要求
+ * 1、定义四个指针:
+ * 一个头结点的前置虚拟指针==>方便返回结果的头结点,
+ * 一个前置指针==>方便切断遍历相同节点,
+ * 一个遍历指针,
+ * 一个搜寻相同指针的尾结点==>定位结尾
+ * 2、找到满足条件的,将前置指针的next指向尾结点的next
+ *
+ * 执行用时 :1 ms, 在所有 java 提交中击败了99.26%的用户
+ * 内存消耗 :37 MB, 在所有 java 提交中击败了57.65%的用户
+ *
+ * @param head
+ * @return
+ */
+ public ListNode deleteDuplicates(ListNode head) {
+ //头结点的前置虚拟指针
+ ListNode dummy = new ListNode(0);
+ dummy.next = head;
+ //前置指针
+ ListNode preNode = head;
+ //遍历指针
+ ListNode node = head;
+ //尾结点指针
+ ListNode endNode ;
+ while (node != null ) {
+ endNode = node.next;
+ while (endNode != null && endNode.val == node.val) {
+ endNode = endNode.next;
+ }
+ if (node.next == endNode){
+ //不是重复的
+ preNode = node;
+ }else{
+ //存在重复的
+ preNode.next = endNode;
+ if (dummy.next == node){
+ dummy.next = endNode;
+ }
+ }
+ node = endNode;
+ }
+
+ return dummy.next;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_83_deleteDuplicates.java b/src/pp/arithmetic/leetcode/_83_deleteDuplicates.java
new file mode 100644
index 0000000..ff232d3
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_83_deleteDuplicates.java
@@ -0,0 +1,63 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+import pp.arithmetic.model.ListNode;
+
+/**
+ * Created by wangpeng on 2019-11-04.
+ * 83. 删除排序链表中的重复元素
+ *
+ * 给定一个排序链表,删除所有重复的元素,使得每个元素只出现一次。
+ *
+ * 示例 1:
+ *
+ * 输入: 1->1->2
+ * 输出: 1->2
+ * 示例 2:
+ *
+ * 输入: 1->1->2->3->3
+ * 输出: 1->2->3
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/remove-duplicates-from-sorted-list
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _83_deleteDuplicates {
+
+ public static void main(String[] args) {
+ _83_deleteDuplicates deleteDuplicates = new _83_deleteDuplicates();
+ ListNode node = new ListNode(1);
+ node.next = new ListNode(1);
+ node.next.next = new ListNode(2);
+ Util.printListNode(deleteDuplicates.deleteDuplicates(node));
+ ListNode node1 = new ListNode(1);
+ node1.next = new ListNode(1);
+ node1.next.next = new ListNode(2);
+ node1.next.next.next = new ListNode(3);
+ node1.next.next.next.next = new ListNode(3);
+ Util.printListNode(deleteDuplicates.deleteDuplicates(node1));
+ }
+
+ /**
+ * 解题思路:典型的列表遍历
+ *
+ * @param head
+ * @return
+ */
+ public ListNode deleteDuplicates(ListNode head) {
+ ListNode dummy = new ListNode(0);
+ dummy.next = head;
+ ListNode next = head;
+ ListNode preEqual;
+ while (next != null) {
+ preEqual = next.next;
+ while (preEqual!=null&&preEqual.val == next.val){
+ preEqual = preEqual.next;
+ }
+ next.next = preEqual;
+ next = preEqual;
+ }
+
+ return dummy.next;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_84_largestRectangleArea.java b/src/pp/arithmetic/leetcode/_84_largestRectangleArea.java
new file mode 100644
index 0000000..8ff5f1a
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_84_largestRectangleArea.java
@@ -0,0 +1,109 @@
+package pp.arithmetic.leetcode;
+
+import java.util.Stack;
+
+/**
+ * Created by wangpeng on 2019-07-18.
+ *
+ * 84. 柱状图中最大的矩形
+ *
+ * 给定 n 个非负整数,用来表示柱状图中各个柱子的高度。每个柱子彼此相邻,且宽度为 1 。
+ *
+ * 求在该柱状图中,能够勾勒出来的矩形的最大面积。
+ *
+ * https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2018/10/12/histogram.png
+ *
+ * 以上是柱状图的示例,其中每个柱子的宽度为 1,给定的高度为 [2,1,5,6,2,3]。
+ *
+ * https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2018/10/12/histogram_area.png
+ *
+ * 图中阴影部分为所能勾勒出的最大矩形面积,其面积为 10 个单位。
+ *
+ *
+ *
+ * 示例:
+ *
+ * 输入: [2,1,5,6,2,3]
+ * 输出: 10
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/largest-rectangle-in-histogram
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _84_largestRectangleArea {
+
+ public static void main(String[] args) {
+ _84_largestRectangleArea largestRectangleArea = new _84_largestRectangleArea();
+ System.out.println(largestRectangleArea.largestRectangleArea(new int[]{2, 1, 5, 6, 2, 3}));
+ System.out.println(largestRectangleArea.largestRectangleArea(new int[]{1}));
+ System.out.println(largestRectangleArea.largestRectangleArea(new int[]{4, 2}));
+ }
+
+ /**
+ * 解题思路:
+ * 能画出的矩形面积受两部分影响,一是宽,一是高,但是具体如何才能使勾勒出的矩形最大?==>尽可能使宽*高最大化
+ * 难点:如何保存遍历过程中的中间结果,可能中间结果在不断遍历的过程中会变成最大的面积
+ *
+ * 分治求解
+ * 1、先找到矩形中最小的一个,求出面积
+ * 2、再求最小左边的矩形面积(循环1,2,3)
+ * 3、再求最小右边的矩形面积(循环1,2,3)
+ * 4、从其中找出最大的面积
+ *
+ * 执行用时 :591 ms, 在所有 Java 提交中击败了20.50%的用户 ==>时间复杂度O(nLogn)
+ * 内存消耗 :43.3 MB, 在所有 Java 提交中击败了31.60%的用户
+ *
+ * 更优解法(栈):{@link _84_largestRectangleArea#largestRectangleArea2(int[])} ==>时间复杂度O(n)
+ *
+ * @param heights
+ * @return
+ */
+ public int largestRectangleArea(int[] heights) {
+ return calculate(heights, 0, heights.length - 1);
+ }
+
+ /**
+ * 分治求解
+ *
+ * @param heights
+ * @param start
+ * @param end
+ * @return
+ */
+ private int calculate(int[] heights, int start, int end) {
+ if (start > end) {
+ return 0;
+ }
+
+ int min = start;
+ for (int i = start; i <= end; i++) {
+ if (heights[i] < heights[min]) {
+ min = i;
+ }
+ }
+ int mid = heights[min] * (end - start + 1);
+ int left = calculate(heights, start, min - 1);
+ int right = calculate(heights, min + 1, end);
+ return Math.max(mid, Math.max(left, right));
+ }
+
+
+ /**
+ * 栈
+ * @param heights
+ * @return
+ */
+ public int largestRectangleArea2(int[] heights) {
+ Stack
+ * 给定一个仅包含 0 和 1 的二维二进制矩阵,找出只包含 1 的最大矩形,并返回其面积。
+ *
+ * 示例:
+ *
+ * 输入:
+ * [
+ * ["1","0","1","0","0"],
+ * ["1","0","1","1","1"],
+ * ["1","1","1","1","1"],
+ * ["1","0","0","1","0"]
+ * ]
+ * 输出: 6
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/maximal-rectangle
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _85_maximalRectangle {
+
+ public static void main(String[] args) {
+ _85_maximalRectangle maximalRectangle = new _85_maximalRectangle();
+ int i = maximalRectangle.maximalRectangle(new char[][]{
+ {'1', '0', '1', '0', '0'},
+ {'1', '0', '1', '1', '1'},
+ {'1', '1', '1', '1', '1'},
+ {'1', '0', '0', '1', '0'}
+ });
+ System.out.println(i);
+ }
+
+
+ /**
+ * 官方题解:动态规划
+ *
+ * @param matrix
+ * @return
+ */
+ public int maximalRectangle(char[][] matrix) {
+ if (matrix.length == 0) return 0;
+ int m = matrix.length;
+ int n = matrix[0].length;
+
+ int[] left = new int[n]; // initialize left as the leftmost boundary possible
+ int[] right = new int[n];
+ int[] height = new int[n];
+
+ Arrays.fill(right, n); // initialize right as the rightmost boundary possible
+
+ int maxarea = 0;
+ for (int i = 0; i < m; i++) {
+ int cur_left = 0, cur_right = n;
+ // update height
+ for (int j = 0; j < n; j++) {
+ if (matrix[i][j] == '1') height[j]++;
+ else height[j] = 0;
+ }
+ // update left
+ for (int j = 0; j < n; j++) {
+ if (matrix[i][j] == '1') left[j] = Math.max(left[j], cur_left);
+ else {
+ left[j] = 0;
+ cur_left = j + 1;
+ }
+ }
+ // update right
+ for (int j = n - 1; j >= 0; j--) {
+ if (matrix[i][j] == '1') right[j] = Math.min(right[j], cur_right);
+ else {
+ right[j] = n;
+ cur_right = j;
+ }
+ }
+ // update area
+ for (int j = 0; j < n; j++) {
+ maxarea = Math.max(maxarea, (right[j] - left[j]) * height[j]);
+ }
+ }
+ return maxarea;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_87_isScramble.java b/src/pp/arithmetic/leetcode/_87_isScramble.java
new file mode 100644
index 0000000..82e2664
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_87_isScramble.java
@@ -0,0 +1,110 @@
+package pp.arithmetic.leetcode;
+
+/**
+ * Created by wangpeng on 2019-11-05.
+ * 87. 扰乱字符串
+ *
+ * 下图是字符串 s1 = "great" 的一种可能的表示形式。
+ *
+ * great
+ * / \
+ * gr eat
+ * / \ / \
+ * g r e at
+ * / \
+ * a t
+ * 在扰乱这个字符串的过程中,我们可以挑选任何一个非叶节点,然后交换它的两个子节点。
+ *
+ * 例如,如果我们挑选非叶节点 "gr" ,交换它的两个子节点,将会产生扰乱字符串 "rgeat" 。
+ *
+ * rgeat
+ * / \
+ * rg eat
+ * / \ / \
+ * r g e at
+ * / \
+ * a t
+ * 我们将 "rgeat” 称作 "great" 的一个扰乱字符串。
+ *
+ * 同样地,如果我们继续交换节点 "eat" 和 "at" 的子节点,将会产生另一个新的扰乱字符串 "rgtae" 。
+ *
+ * rgtae
+ * / \
+ * rg tae
+ * / \ / \
+ * r g ta e
+ * / \
+ * t a
+ * 我们将 "rgtae” 称作 "great" 的一个扰乱字符串。
+ *
+ * 给出两个长度相等的字符串 s1 和 s2,判断 s2 是否是 s1 的扰乱字符串。
+ *
+ * 示例 1:
+ *
+ * 输入: s1 = "great", s2 = "rgeat"
+ * 输出: true
+ * 示例 2:
+ *
+ * 输入: s1 = "abcde", s2 = "caebd"
+ * 输出: false
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/scramble-string
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _87_isScramble {
+
+ public static void main(String[] args) {
+ _87_isScramble isScramble = new _87_isScramble();
+ System.out.println(isScramble.isScramble("great","rgeat"));
+ System.out.println(isScramble.isScramble("abcde","caebd"));
+ }
+
+ /**
+ * 解题思路:
+ * 对于两个字符串,比较是否相等,有两种情景
+ * 1:字符串本身就相等
+ * 2:基于某个节点交换后相等==>此种情况可以将旋转后的子字符串代入第一种情况进行判断
+ *
+ * 对于上述两种情况可以将字符串分解成两部分(从0开始拆解)
+ *
+ * @param s1
+ * @param s2
+ * @return
+ */
+ public boolean isScramble(String s1, String s2) {
+ if (s1.length() != s2.length()) {
+ return false;
+ }
+ if (s1.equals(s2)) {
+ return true;
+ }
+
+ //判断两个字符串每个字母出现的次数是否一致
+ int[] letters = new int[26];
+ for (int i = 0; i < s1.length(); i++) {
+ letters[s1.charAt(i) - 'a']++;
+ letters[s2.charAt(i) - 'a']--;
+ }
+ //如果两个字符串的字母出现不一致直接返回 false
+ for (int i = 0; i < 26; i++) {
+ if (letters[i] != 0) {
+ return false;
+ }
+ }
+
+ //遍历每个切割位置
+ for (int i = 1; i < s1.length(); i++) {
+ //对应情况 1 ,判断 S1 的子树能否变为 S2 相应部分
+ if (isScramble(s1.substring(0, i), s2.substring(0, i)) && isScramble(s1.substring(i), s2.substring(i))) {
+ return true;
+ }
+ //对应情况 2 ,S1 两个子树先进行了交换,然后判断 S1 的子树能否变为 S2 相应部分
+ if (isScramble(s1.substring(i), s2.substring(0, s2.length() - i)) &&
+ isScramble(s1.substring(0, i), s2.substring(s2.length() - i)) ) {
+ return true;
+ }
+ }
+ return false;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_88_merge.java b/src/pp/arithmetic/leetcode/_88_merge.java
new file mode 100644
index 0000000..1719058
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_88_merge.java
@@ -0,0 +1,69 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+
+/**
+ * Created by wangpeng on 2019-11-07.
+ * 88. 合并两个有序数组
+ *
+ * 给定两个有序整数数组 nums1 和 nums2,将 nums2 合并到 nums1 中,使得 num1 成为一个有序数组。
+ *
+ * 说明:
+ *
+ * 初始化 nums1 和 nums2 的元素数量分别为 m 和 n。
+ * 你可以假设 nums1 有足够的空间(空间大小大于或等于 m + n)来保存 nums2 中的元素。
+ * 示例:
+ *
+ * 输入:
+ * nums1 = [1,2,3,0,0,0], m = 3
+ * nums2 = [2,5,6], n = 3
+ *
+ * 输出: [1,2,2,3,5,6]
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/merge-sorted-array
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _88_merge {
+
+ public static void main(String[] args) {
+ _88_merge merge = new _88_merge();
+ int[] nums1 = new int[]{1, 2, 3, 0, 0, 0, 0, 0};
+ int[] nums2 = new int[]{1, 1, 2, 5, 6};
+ merge.merge(nums1, 0, nums2, 5);
+ Util.printArray(nums1);
+ }
+
+ /**
+ * 解题思路:
+ * 同时遍历两个数组,比较各自的大小,插入到相应的位置,由于nums1有额外的位置,所以从后面开始插入大元素可以减少元素的移动
+ *
+ * @param nums1
+ * @param m
+ * @param nums2
+ * @param n
+ */
+ public void merge(int[] nums1, int m, int[] nums2, int n) {
+ while (m > 0 || n > 0) {
+ int numM;
+ int numN;
+ if (m > 0 && n > 0) {
+ numM = nums1[m - 1];
+ numN = nums2[n - 1];
+ if (numM > numN) {
+ nums1[m + n - 1] = numM;
+ m--;
+ } else {
+ nums1[m + n - 1] = numN;
+ n--;
+ }
+ } else if (m > 0) {
+ //只剩下nums1,肯定是有序的
+ break;
+ } else {
+ nums1[n - 1] = nums2[n - 1];
+ n--;
+ }
+ }
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_89_grayCode.java b/src/pp/arithmetic/leetcode/_89_grayCode.java
new file mode 100644
index 0000000..2abc394
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_89_grayCode.java
@@ -0,0 +1,71 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * Created by wangpeng on 2019-11-09.
+ * 89. 格雷编码
+ *
+ * 格雷编码是一个二进制数字系统,在该系统中,两个连续的数值仅有一个位数的差异。
+ *
+ * 给定一个代表编码总位数的非负整数 n,打印其格雷编码序列。格雷编码序列必须以 0 开头。
+ *
+ * 示例 1:
+ *
+ * 输入: 2
+ * 输出: [0,1,3,2]
+ * 解释:
+ * 00 - 0
+ * 01 - 1
+ * 11 - 3
+ * 10 - 2
+ *
+ * 对于给定的 n,其格雷编码序列并不唯一。
+ * 例如,[0,2,3,1] 也是一个有效的格雷编码序列。
+ *
+ * 00 - 0
+ * 10 - 2
+ * 11 - 3
+ * 01 - 1
+ * 示例 2:
+ *
+ * 输入: 0
+ * 输出: [0]
+ * 解释: 我们定义格雷编码序列必须以 0 开头。
+ * 给定编码总位数为 n 的格雷编码序列,其长度为 2^n。当 n = 0 时,长度为 2^0 = 1。
+ * 因此,当 n = 0 时,其格雷编码序列为 [0]。
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/gray-code
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _89_grayCode {
+
+ public static void main(String[] args) {
+ _89_grayCode grayCode = new _89_grayCode();
+ Util.printList(grayCode.grayCode(2));
+ }
+
+ /**
+ * 解题思路:
+ *
+ * @param n
+ * @return
+ */
+ public List
+ * 一条包含字母 A-Z 的消息通过以下方式进行了编码:
+ *
+ * 'A' -> 1
+ * 'B' -> 2
+ * ...
+ * 'Z' -> 26
+ * 给定一个只包含数字的非空字符串,请计算解码方法的总数。
+ *
+ * 示例 1:
+ *
+ * 输入: "12"
+ * 输出: 2
+ * 解释: 它可以解码为 "AB"(1 2)或者 "L"(12)。
+ * 示例 2:
+ *
+ * 输入: "226"
+ * 输出: 3
+ * 解释: 它可以解码为 "BZ" (2 26), "VF" (22 6), 或者 "BBF" (2 2 6) 。
+ *
+ * @see decode-ways
+ */
+public class _91_numDecodings {
+ public static void main(String[] args) {
+ _91_numDecodings numDecodings = new _91_numDecodings();
+ System.out.println(numDecodings.numDecodings("100"));
+ System.out.println(numDecodings.numDecodings("101"));
+ System.out.println(numDecodings.numDecodings("110"));
+ System.out.println(numDecodings.numDecodings("230"));
+ System.out.println(numDecodings.numDecodings("226"));
+ System.out.println(numDecodings.numDecodings("2261"));
+ }
+
+ /**
+ * 解题思路:
+ * 字符可以1个或者2个对应字母,2个最大是26,一个最小是1
+ * dp代表当前i可以解码的个数
+ *
+ * 题目很坑,注意异常数字(0)非常多
+ * 理清楚递推逻辑还是很难的。
+ *
+ * @param s
+ * @return
+ */
+ public int numDecodings(String s) {
+ if (s.length() == 0 || (s.charAt(0) == '0')) return 0;
+ if (s.length() == 1) return 1;
+ int[] dp = new int[s.length() + 1];
+ dp[0] = 1;
+ for (int i = 0; i < s.length(); ++i) {
+ dp[i + 1] = s.charAt(i) == '0' ? 0 : dp[i];
+ if (i > 0 && (s.charAt(i - 1) == '1' || (s.charAt(i - 1) == '2' && s.charAt(i) <= '6'))) {
+ dp[i + 1] += dp[i - 1];
+ }
+ }
+ return dp[s.length()];
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_94_inorderTraversal.java b/src/pp/arithmetic/leetcode/_94_inorderTraversal.java
new file mode 100644
index 0000000..152c197
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_94_inorderTraversal.java
@@ -0,0 +1,95 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+import pp.arithmetic.model.TreeNode;
+
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Stack;
+
+/**
+ * Created by wangpeng on 2019-07-24.
+ * 94. 二叉树的中序遍历
+ *
+ * 给定一个二叉树,返回它的中序 遍历。
+ *
+ * 示例:
+ *
+ * 输入: [1,null,2,3]
+ * 1
+ * \
+ * 2
+ * /
+ * 3
+ *
+ * 输出: [1,3,2]
+ * 进阶: 递归算法很简单,你可以通过迭代算法完成吗?
+ *
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/binary-tree-inorder-traversal
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _94_inorderTraversal {
+
+ public static void main(String[] args) {
+ TreeNode treeNode = Util.generateTreeNode();
+ Util.printTree(treeNode);
+ _94_inorderTraversal inorderTraversal = new _94_inorderTraversal();
+ //递归算法
+ Util.printList(inorderTraversal.inorderTraversal(treeNode));
+ Util.printList(inorderTraversal.inorderTraversal2(treeNode));
+
+ }
+
+ /**
+ * 解题思路:
+ * 按题目所说,递归算法{@link _94_inorderTraversal#inorderTraversal2(TreeNode)}很简单,我们试着迭代算法完成
+ * 模拟递归,用一个栈保存遍历结果
+ *
+ * @param root
+ * @return
+ */
+ public List
+ * 给定一个整数 n,生成所有由 1 ... n 为节点所组成的二叉搜索树。
+ *
+ * 示例:
+ *
+ * 输入: 3
+ * 输出:
+ * [
+ * [1,null,3,2],
+ * [3,2,null,1],
+ * [3,1,null,null,2],
+ * [2,1,3],
+ * [1,null,2,null,3]
+ * ]
+ * 解释:
+ * 以上的输出对应以下 5 种不同结构的二叉搜索树:
+ *
+ * 1 3 3 2 1
+ * \ / / / \ \
+ * 3 2 1 1 3 2
+ * / / \ \
+ * 2 1 2 3
+ *
+ * @see unique-binary-search-trees-ii
+ */
+public class _95_generateTrees {
+ public static void main(String[] args) {
+ _95_generateTrees trees = new _95_generateTrees();
+ List
+ * 给定三个字符串 s1, s2, s3, 验证 s3 是否是由 s1 和 s2 交错组成的。
+ *
+ * 示例 1:
+ *
+ * 输入: s1 = "aabcc", s2 = "dbbca", s3 = "aadbbcbcac"
+ * 输出: true
+ * 示例 2:
+ *
+ * 输入: s1 = "aabcc", s2 = "dbbca", s3 = "aadbbbaccc"
+ * 输出: false
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/interleaving-string
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _97_isInterleave {
+
+ public static void main(String[] args) {
+ _97_isInterleave isInterleave = new _97_isInterleave();
+ System.out.println(isInterleave.isInterleave("a", "bbbbbbb", "abbbbbba"));
+ System.out.println(isInterleave.isInterleave("aabcc", "dbbca", "aadbbcbcac"));
+ System.out.println(isInterleave.isInterleave("aabcc", "dbbca", "aadbbbaccc"));
+ System.out.println(isInterleave.isInterleave("a", "", "c"));
+ System.out.println(isInterleave.isInterleave("ab", "bc", "bbac"));
+ }
+
+ /**
+ * 解题思路:循环比较,回溯算法
+ * 先比较第i位+比较后面的位,如果第i位后面的都能匹配上,加上第i位也能匹配上,那么就能完全匹配。i从0开始
+ *
+ * 执行用时 :1362 ms, 在所有 java 提交中击败了5.10%的用户
+ * 内存消耗 :34.7 MB, 在所有 java 提交中击败了42.29%的用户
+ *
+ * @param s1、
+ * @param s2
+ * @param s3
+ * @return
+ */
+ public boolean isInterleave(String s1, String s2, String s3) {
+ if (s3.length() != s1.length() + s2.length()) return false;
+ return isInterleave(s1, s2, s3, 0, 0, 0);
+ }
+
+ private boolean isInterleave(String s1, String s2, String s3, int i1, int i2, int i3) {
+ if (i3 == s3.length()) return true;
+ char c3 = s3.charAt(i3);
+ if (((i1 < s1.length() && s1.charAt(i1) != c3) || "".equals(s1)) &&
+ ((i2 < s2.length() && s2.charAt(i2) != c3) || "".equals(s2))) {
+ return false;
+ }
+ if (i1 < s1.length() && s1.charAt(i1) == c3 && isInterleave(s1, s2, s3, i1 + 1, i2, i3 + 1)) {
+ return true;
+ }
+ if (i2 < s2.length() && s2.charAt(i2) == c3 && isInterleave(s1, s2, s3, i1, i2 + 1, i3 + 1)) {
+ return true;
+ }
+ return false;
+ }
+}
diff --git a/src/pp/arithmetic/leetcode/_98_isValidBST.java b/src/pp/arithmetic/leetcode/_98_isValidBST.java
new file mode 100644
index 0000000..e975f4e
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_98_isValidBST.java
@@ -0,0 +1,83 @@
+package pp.arithmetic.leetcode;
+
+import javafx.util.Pair;
+import pp.arithmetic.model.TreeNode;
+
+/**
+ * Created by wangpeng on 2019-07-24.
+ * 98. 验证二叉搜索树
+ *
+ * 给定一个二叉树,判断其是否是一个有效的二叉搜索树。
+ *
+ * 假设一个二叉搜索树具有如下特征:
+ *
+ * 节点的左子树只包含小于当前节点的数。
+ * 节点的右子树只包含大于当前节点的数。
+ * 所有左子树和右子树自身必须也是二叉搜索树。
+ * 示例 1:
+ *
+ * 输入:
+ * 2
+ * / \
+ * 1 3
+ * 输出: true
+ * 示例 2:
+ *
+ * 输入:
+ * 5
+ * / \
+ * 1 4
+ * / \
+ * 3 6
+ * 输出: false
+ * 解释: 输入为: [5,1,4,null,null,3,6]。
+ * 根节点的值为 5 ,但是其右子节点值为 4 。
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/validate-binary-search-tree
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _98_isValidBST {
+
+ public static void main(String[] args) {
+ TreeNode treeNode = new TreeNode(2);
+ treeNode.left = new TreeNode(1);
+ treeNode.right = new TreeNode(3);
+ _98_isValidBST isValidBST = new _98_isValidBST();
+ System.out.println(isValidBST.isValidBST(treeNode));
+ TreeNode treeNode1 = new TreeNode(5);
+ treeNode1.left = new TreeNode(1);
+ treeNode1.right = new TreeNode(4);
+ treeNode1.right.left = new TreeNode(3);
+ treeNode1.right.right = new TreeNode(6);
+ System.out.println(isValidBST.isValidBST(treeNode1));
+ //[10,5,15,null,null,6,20]
+ TreeNode treeNode2 = new TreeNode(10);
+ treeNode2.left = new TreeNode(5);
+ treeNode2.left.right = new TreeNode(15);
+// treeNode2.left.right = new TreeNode(6);
+// treeNode2.right = new TreeNode(20);
+ System.out.println(isValidBST.isValidBST(treeNode2));
+ }
+
+ /**
+ * 解题思路:
+ * 树的解题思路:递归
+ * 1.左子树满足条件
+ * 2.右子树满足条件
+ * 3.自己满足条件(大于左子树max,跟小于又子树min)
+ *
+ * @param root
+ * @return
+ */
+ public boolean isValidBST(TreeNode root) {
+ return valid(root, Integer.MIN_VALUE, Integer.MAX_VALUE);
+ }
+
+ private boolean valid(TreeNode root, int min, int max) {
+ if (root == null) return true;
+ if (root.val <= min || root.val >= max) return false;
+ return valid(root.left, min, root.val) && valid(root.right, root.val, max);
+ }
+
+}
diff --git a/src/pp/arithmetic/leetcode/_99_recoverTree.java b/src/pp/arithmetic/leetcode/_99_recoverTree.java
new file mode 100644
index 0000000..50d5d6e
--- /dev/null
+++ b/src/pp/arithmetic/leetcode/_99_recoverTree.java
@@ -0,0 +1,153 @@
+package pp.arithmetic.leetcode;
+
+import pp.arithmetic.Util;
+import pp.arithmetic.model.TreeNode;
+
+/**
+ * Created by wangpeng on 2019-12-01.
+ * 99. 恢复二叉搜索树
+ *
+ * 二叉搜索树中的两个节点被错误地交换。
+ *
+ * 请在不改变其结构的情况下,恢复这棵树。
+ *
+ * 示例 1:
+ *
+ * 输入: [1,3,null,null,2]
+ *
+ * 1
+ * /
+ * 3
+ * \
+ * 2
+ *
+ * 输出: [3,1,null,null,2]
+ *
+ * 3
+ * /
+ * 1
+ * \
+ * 2
+ * 示例 2:
+ *
+ * 输入: [3,1,4,null,null,2]
+ *
+ * 3
+ * / \
+ * 1 4
+ * /
+ * 2
+ *
+ * 输出: [2,1,4,null,null,3]
+ *
+ * 2
+ * / \
+ * 1 4
+ * /
+ * 3
+ * 进阶:
+ *
+ * 使用 O(n) 空间复杂度的解法很容易实现。
+ * 你能想出一个只使用常数空间的解决方案吗?
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/recover-binary-search-tree
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _99_recoverTree {
+
+ public static void main(String[] args) {
+ TreeNode treeNode = new TreeNode(1);
+ treeNode.left = new TreeNode(3);
+ treeNode.left.right = new TreeNode(2);
+ _99_recoverTree recoverTree = new _99_recoverTree();
+ recoverTree.recoverTree(treeNode);
+ Util.printTree(treeNode);
+ }
+
+ /**
+ * 解题思路:
+ * 分:几种情况
+ * 1、根节点和左子树的某个数字交换 -> 由于根节点大于左子树中的所有数,所以交换后我们只要找左子树中最大的那个数,就是所交换的那个数
+ * 2、根节点和右子树的某个数字交换 -> 由于根节点小于右子树中的所有数,所以交换后我们只要在右子树中最小的那个数,就是所交换的那个数
+ * 3、左子树和右子树的两个数字交换 -> 找左子树中最大的数,右子树中最小的数,即对应两个交换的数
+ * 4、左子树中的两个数字交换
+ * 5、右子树中的两个数字交换
+ * @param root
+ */
+ public void recoverTree(TreeNode root) {
+ if (root == null) {
+ return;
+ }
+ //寻找左子树中最大的节点
+ TreeNode maxLeft = getMaxOfBST(root.left);
+ //寻找右子树中最小的节点
+ TreeNode minRight = getMinOfBST(root.right);
+
+ if (minRight != null && maxLeft != null) {
+ //左边的大于根节点,右边的小于根节点,对应情况 3,左右子树中的两个数字交换
+ if ( maxLeft.val > root.val && minRight.val < root.val) {
+ int temp = minRight.val;
+ minRight.val = maxLeft.val;
+ maxLeft.val = temp;
+ }
+ }
+
+ if (maxLeft != null) {
+ //左边最大的大于根节点,对应情况 1,根节点和左子树的某个数做了交换
+ if (maxLeft.val > root.val) {
+ int temp = maxLeft.val;
+ maxLeft.val = root.val;
+ root.val = temp;
+ }
+ }
+
+ if (minRight != null) {
+ //右边最小的小于根节点,对应情况 2,根节点和右子树的某个数做了交换
+ if (minRight.val < root.val) {
+ int temp = minRight.val;
+ minRight.val = root.val;
+ root.val = temp;
+ }
+ }
+ //对应情况 4,左子树中的两个数进行了交换
+ recoverTree(root.left);
+ //对应情况 5,右子树中的两个数进行了交换
+ recoverTree(root.right);
+
+ }
+ //寻找树中最小的节点
+ private TreeNode getMinOfBST(TreeNode root) {
+ if (root == null) {
+ return null;
+ }
+ TreeNode minLeft = getMinOfBST(root.left);
+ TreeNode minRight = getMinOfBST(root.right);
+ TreeNode min = root;
+ if (minLeft != null && min.val > minLeft.val) {
+ min = minLeft;
+ }
+ if (minRight != null && min.val > minRight.val) {
+ min = minRight;
+ }
+ return min;
+ }
+
+ //寻找树中最大的节点
+ private TreeNode getMaxOfBST(TreeNode root) {
+ if (root == null) {
+ return null;
+ }
+ TreeNode maxLeft = getMaxOfBST(root.left);
+ TreeNode maxRight = getMaxOfBST(root.right);
+ TreeNode max = root;
+ if (maxLeft != null && max.val < maxLeft.val) {
+ max = maxLeft;
+ }
+ if (maxRight != null && max.val < maxRight.val) {
+ max = maxRight;
+ }
+ return max;
+ }
+
+}
diff --git a/src/pp/arithmetic/model/Node.java b/src/pp/arithmetic/model/Node.java
new file mode 100644
index 0000000..15ac2de
--- /dev/null
+++ b/src/pp/arithmetic/model/Node.java
@@ -0,0 +1,24 @@
+package pp.arithmetic.model;
+
+/**
+ * Created by wangpeng on 2019-12-14.
+ */
+public class Node {
+ public int val;
+ public Node left;
+ public Node right;
+ public Node next;
+
+ public Node() {}
+
+ public Node(int _val) {
+ val = _val;
+ }
+
+ public Node(int _val, Node _left, Node _right, Node _next) {
+ val = _val;
+ left = _left;
+ right = _right;
+ next = _next;
+ }
+}
diff --git a/src/pp/arithmetic/offer/_03_findRepeatNumber.java b/src/pp/arithmetic/offer/_03_findRepeatNumber.java
new file mode 100644
index 0000000..8fbedfa
--- /dev/null
+++ b/src/pp/arithmetic/offer/_03_findRepeatNumber.java
@@ -0,0 +1,124 @@
+package pp.arithmetic.offer;
+
+import java.util.HashMap;
+
+/**
+ * Created by wangpeng on 2020-07-28.
+ * 剑指 Offer 03. 数组中重复的数字
+ *
+ * 找出数组中重复的数字。
+ *
+ *
+ * 在一个长度为 n 的数组 nums 里的所有数字都在 0~n-1 的范围内。数组中某些数字是重复的,但不知道有几个数字重复了,也不知道每个数字重复了几次。请找出数组中任意一个重复的数字。
+ *
+ * 示例 1:
+ *
+ * 输入:
+ * [2, 3, 1, 0, 2, 5, 3]
+ * 输出:2 或 3
+ *
+ *
+ * 限制:
+ *
+ * 2 <= n <= 100000
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/shu-zu-zhong-zhong-fu-de-shu-zi-lcof
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _03_findRepeatNumber {
+
+ public static void main(String[] args) {
+ _03_findRepeatNumber findRepeatNumber = new _03_findRepeatNumber();
+ int repeatNumber = findRepeatNumber.findRepeatNumber(new int[]{2, 3, 0, 1, 2, 3, 4, 5, 3});
+ System.out.println(repeatNumber);
+ int repeatNumber2 = findRepeatNumber.findRepeatNumber2(new int[]{2, 3, 0, 1, 2, 3, 4, 5, 3});
+ System.out.println(repeatNumber2);
+ int repeatNumber3 = findRepeatNumber.findRepeatNumber3(new int[]{2, 3, 0, 1, 2, 3, 4, 5, 3});
+ System.out.println(repeatNumber3);
+ }
+
+ /**
+ * 解题思路:
+ * 方案一:最直接的方式,使用一个HashMap进行存储遍历过的数字,性能肯定不会差,内存占用会高
+ *
+ * 执行用时:13 ms, 在所有 Java 提交中击败了8.98%的用户
+ * 内存消耗:48.7 MB, 在所有 Java 提交中击败了100.00%的用户
+ *
+ * 执行结果有点出人意料,用时偏高
+ *
+ * 优化方案二:{@link _03_findRepeatNumber#findRepeatNumber2(int[])}
+ *
+ * @param nums
+ * @return
+ */
+ public int findRepeatNumber(int[] nums) {
+ HashMap
+ * 剑指 Offer 12. 矩阵中的路径
+ *
+ * 请设计一个函数,用来判断在一个矩阵中是否存在一条包含某字符串所有字符的路径。路径可以从矩阵中的任意一格开始,每一步可以在矩阵中向左、右、上、下移动一格。
+ * 如果一条路径经过了矩阵的某一格,那么该路径不能再次进入该格子。例如,在下面的3×4的矩阵中包含一条字符串“bfce”的路径(路径中的字母用加粗标出)。
+ *
+ * [["a","b","c","e"],
+ * ["s","f","c","s"],
+ * ["a","d","e","e"]]
+ *
+ * 但矩阵中不包含字符串“abfb”的路径,因为字符串的第一个字符b占据了矩阵中的第一行第二个格子之后,路径不能再次进入这个格子。
+ *
+ *
+ *
+ * 示例 1:
+ *
+ * 输入:board = [["A","B","C","E"],["S","F","C","S"],["A","D","E","E"]], word = "ABCCED"
+ * 输出:true
+ * 示例 2:
+ *
+ * 输入:board = [["a","b"],["c","d"]], word = "abcd"
+ * 输出:false
+ * 提示:
+ *
+ * 1 <= board.length <= 200
+ * 1 <= board[i].length <= 200
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/ju-zhen-zhong-de-lu-jing-lcof
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _12_exist {
+
+ public static void main(String[] args) {
+ _12_exist exist = new _12_exist();
+// char[][] board = new char[][]{
+// {'A', 'B', 'C', 'E'},
+// {'S', 'F', 'C', 'S'},
+// {'A', 'D', 'E', 'E'}
+// };
+// System.out.println(exist.exist(board,"ABFACED"));
+// System.out.println(exist.exist(new char[][]{
+// {'a','b'},
+// {'c','d'}
+// },"abcd"));
+ System.out.println(exist.exist(new char[][]{
+ {'C','A','A'},
+ {'A','A','A'},
+ {'B','C','D'}
+ },"AAB"));
+ }
+
+ /**
+ * 解题思路:
+ * 从board的[0,0]开始向上、左、下、右进行深度遍历,逐步去匹配word中的字符,新建个history保存遍历路径,防止死循环
+ *
+ * @param board
+ * @param word
+ * @return
+ */
+ public boolean exist(char[][] board, String word) {
+ if (board == null || board.length == 0) return false;
+ int[][] history = new int[board.length][board[0].length];
+ return dfs(board, word, history, 0, 0, 0);
+ }
+
+ private boolean dfs(char[][] board, String word, int[][] history, int wi, int nx, int ny) {
+ if (wi >= word.length()) {
+ //word遍历结束才返回true
+ return true;
+ }
+ //遍历越界
+ if (nx < 0 || nx >= board.length || ny < 0 || ny >= board[nx].length) return false;
+ //之前走过这个位置
+ if (history[nx][ny] == 1) return false;
+ if (board[nx][ny] == word.charAt(wi)) {
+ history[nx][ny] = 1;
+ if (dfs(board, word, history, wi + 1, nx, ny + 1)
+ || dfs(board, word, history, wi + 1, nx + 1, ny)
+ || dfs(board, word, history, wi + 1, nx, ny - 1)
+ || dfs(board, word, history, wi + 1, nx - 1, ny)) {
+ return true;
+ }
+ history[nx][ny] = 0;
+ }
+ if (wi == 0) {
+ //定位首个字符的标识位
+ if (nx < board.length - 1) {
+ if (dfs(board, word, history, wi, nx + 1, ny)) {
+ return true;
+ }
+ } else if (ny < board[0].length - 1) {
+ if (dfs(board, word, history, wi, 0, ny + 1)) {
+ return true;
+ }
+ }
+ }
+ return false;
+ }
+
+}
diff --git a/src/pp/arithmetic/offer/_13_movingCount.java b/src/pp/arithmetic/offer/_13_movingCount.java
new file mode 100644
index 0000000..e89db86
--- /dev/null
+++ b/src/pp/arithmetic/offer/_13_movingCount.java
@@ -0,0 +1,83 @@
+package pp.arithmetic.offer;
+
+/**
+ * Created by wangpeng on 2020-08-06.
+ *
+ * 剑指 Offer 13. 机器人的运动范围
+ *
+ * 地上有一个m行n列的方格,从坐标 [0,0] 到坐标 [m-1,n-1] 。一个机器人从坐标 [0, 0] 的格子开始移动,它每次可以向左、右、上、下移动一格(不能移动到方格外),
+ * 也不能进入行坐标和列坐标的数位之和大于k的格子。例如,当k为18时,机器人能够进入方格 [35, 37] ,因为3+5+3+7=18。但它不能进入方格 [35, 38],因为3+5+3+8=19。请问该机器人能够到达多少个格子?
+ *
+ *
+ *
+ * 示例 1:
+ *
+ * 输入:m = 2, n = 3, k = 1
+ * 输出:3
+ * 示例 2:
+ *
+ * 输入:m = 3, n = 1, k = 0
+ * 输出:1
+ * 提示:
+ *
+ * 1 <= n,m <= 100
+ * 0 <= k <= 20
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/ji-qi-ren-de-yun-dong-fan-wei-lcof
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _13_movingCount {
+
+ public static void main(String[] args) {
+ _13_movingCount movingCount = new _13_movingCount();
+ System.out.println(movingCount.movingCount(2,3,1));
+ System.out.println(movingCount.movingCount(3,1,0));
+ System.out.println(movingCount.movingCount(1,2,1));
+ System.out.println(movingCount.movingCount(10,10,2));
+ System.out.println(movingCount.movingCount(16,8,4));
+ }
+
+ private int retVal = 0;
+
+ /**
+ * 解题思路:
+ * 使用int[m][n]大小的数组保存行进记录,上下左右进行DFS,不满足条件的跳过
+ * 需要注意的可能中间某些行和列相加也满足条件,所以需要整个行和列都需要遍历完(不需要考虑,题中是从0,0开始的)
+ *
+ * @param m
+ * @param n
+ * @param k
+ * @return
+ */
+ public int movingCount(int m, int n, int k) {
+ if (k < 0 || m <=0 || n<=0) return 0;
+ retVal = 0;
+ int[][] history = new int[m][n];
+ dfs(0,0,m,n,k,history);
+ return retVal;
+ }
+
+ private void dfs(int cx, int cy, int m, int n, int k, int[][] history) {
+ if (cx < 0 || cx >= m || cy < 0 || cy >= n) return;
+ if (add(cx, cy) > k) return;
+ if (history[cx][cy] == 1) return;
+ history[cx][cy] = 1;
+ retVal++;
+ dfs(cx, cy + 1, m, n, k, history);
+ dfs(cx + 1, cy, m, n, k, history);
+ dfs(cx, cy - 1, m, n, k, history);
+ dfs(cx - 1, cy, m, n, k, history);
+ }
+
+ private int add(int x, int y) {
+ int retVal = 0;
+ retVal += x / 100;
+ retVal += (x - x / 100 * 100) / 10;
+ retVal += x - x / 100 * 100 - (x - x / 100 * 100) / 10 * 10;
+ retVal += y / 100;
+ retVal += (y - y / 100 * 100) / 10;
+ retVal += y - y / 100 * 100 - (y - y / 100 * 100) / 10 * 10;
+ return retVal;
+ }
+}
diff --git a/src/pp/arithmetic/offer/_14_1_cuttingRope.java b/src/pp/arithmetic/offer/_14_1_cuttingRope.java
new file mode 100644
index 0000000..939abcc
--- /dev/null
+++ b/src/pp/arithmetic/offer/_14_1_cuttingRope.java
@@ -0,0 +1,68 @@
+package pp.arithmetic.offer;
+
+/**
+ * Created by wangpeng on 2020-08-07.
+ *
+ * 剑指 Offer 14- I. 剪绳子
+ *
+ * 给你一根长度为 n 的绳子,请把绳子剪成整数长度的 m 段(m、n都是整数,n>1并且m>1),每段绳子的长度记为 k[0],k[1]...k[m-1] 。请问 k[0]*k[1]*...*k[m-1] 可能的最大乘积是多少?例如,当绳子的长度是8时,我们把它剪成长度分别为2、3、3的三段,此时得到的最大乘积是18。
+ *
+ * 示例 1:
+ *
+ * 输入: 2
+ * 输出: 1
+ * 解释: 2 = 1 + 1, 1 × 1 = 1
+ * 示例 2:
+ *
+ * 输入: 10
+ * 输出: 36
+ * 解释: 10 = 3 + 3 + 4, 3 × 3 × 4 = 36
+ * 提示:
+ *
+ * 2 <= n <= 58
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/jian-sheng-zi-lcof
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _14_1_cuttingRope {
+
+ public static void main(String[] args) {
+ _14_1_cuttingRope cuttingRope = new _14_1_cuttingRope();
+ System.out.println(cuttingRope.cuttingRope(8));
+ System.out.println(cuttingRope.cuttingRope(10));
+ System.out.println(cuttingRope.cuttingRope(14));
+ System.out.println(cuttingRope.cuttingRope(58));
+ }
+
+ /**
+ * 解题思路:
+ * 手动模拟了从2-10的最大乘积数字拆解,发现了一个现象:
+ * 对于数字n,n一直除以2到1为止,得到的数字就是最大的乘积,举例如下:
+ * 数字n 2 3 4 5 6 7 8 9 10
+ * 乘积 1,1 1,2 2,2 2,3 3,3 3,4(2,2) 4(2,2),4(2,2) 4,5(2,3) 5(2,3),5(2,3)
+ * 发现到了后面的最大乘积可以利用之前的计算好的结果,从而得出动态规划转移方程
+ * dp[i]=dp[i/2]*dp[i-i/2](i>3)
+ * 上面有问题,例如8的最大值不是除以2得到4*4=16,而是3*2*3=18,所以得双重循环取所有情况的最大值
+ * for (int j = 1; j <= i / 2; j++) {
+ * dp[i] = Math.max(dp[i], dp[j] * dp[i - j]);
+ * }
+ *
+ * @param n
+ * @return
+ */
+ public int cuttingRope(int n) {
+ if (n <= 3) return n - 1;
+ int[] dp = new int[n + 1];
+ //初始化,1,2,3特殊处理
+ dp[1] = 1;
+ dp[2] = 2;
+ dp[3] = 3;
+ for (int i = 4; i <= n; i++) {
+ for (int j = 1; j <= i / 2; j++) {
+ dp[i] = Math.max(dp[i], dp[j] * dp[i - j]);
+ }
+ }
+ return dp[n];
+ }
+}
diff --git a/src/pp/arithmetic/offer/_15_hammingWeight.java b/src/pp/arithmetic/offer/_15_hammingWeight.java
new file mode 100644
index 0000000..bfae0b4
--- /dev/null
+++ b/src/pp/arithmetic/offer/_15_hammingWeight.java
@@ -0,0 +1,57 @@
+package pp.arithmetic.offer;
+
+/**
+ * Created by wangpeng on 2020-08-10.
+ * 剑指 Offer 15. 二进制中1的个数
+ *
+ * 请实现一个函数,输入一个整数,输出该数二进制表示中 1 的个数。例如,把 9 表示成二进制是 1001,有 2 位是 1。因此,如果输入 9,则该函数输出 2。
+ *
+ * 示例 1:
+ *
+ * 输入:00000000000000000000000000001011
+ * 输出:3
+ * 解释:输入的二进制串 00000000000000000000000000001011 中,共有三位为 '1'。
+ * 示例 2:
+ *
+ * 输入:00000000000000000000000010000000
+ * 输出:1
+ * 解释:输入的二进制串 00000000000000000000000010000000 中,共有一位为 '1'。
+ * 示例 3:
+ *
+ * 输入:11111111111111111111111111111101
+ * 输出:31
+ * 解释:输入的二进制串 11111111111111111111111111111101 中,共有 31 位为 '1'。
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/er-jin-zhi-zhong-1de-ge-shu-lcof
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _15_hammingWeight {
+
+ public static void main(String[] args) {
+ _15_hammingWeight hammingWeight = new _15_hammingWeight();
+ System.out.println(hammingWeight.hammingWeight(11));
+ System.out.println(hammingWeight.hammingWeight(128));
+// System.out.println(hammingWeight.hammingWeight(4294967293));
+ }
+
+
+ /**
+ * 解题思路:
+ * 如果n%2!=0,则1的个数+1,直到n=1
+ *
+ * 注意无符号的,对应int会超 右移动使用>>>(无符号右移)
+ * @param n
+ * @return
+ */
+ // you need to treat n as an unsigned value
+ public int hammingWeight(int n) {
+ int retVal = 0;
+ while (n != 0) {
+ retVal += n & 1;
+ n = n >>> 1;
+ }
+
+ return retVal;
+ }
+}
diff --git a/src/pp/arithmetic/offer/_16_myPow.java b/src/pp/arithmetic/offer/_16_myPow.java
new file mode 100644
index 0000000..0a49745
--- /dev/null
+++ b/src/pp/arithmetic/offer/_16_myPow.java
@@ -0,0 +1,71 @@
+package pp.arithmetic.offer;
+
+/**
+ * Created by wangpeng on 2020-08-11.
+ *
+ * 剑指 Offer 16. 数值的整数次方
+ *
+ * 实现函数double Power(double base, int exponent),求base的exponent次方。不得使用库函数,同时不需要考虑大数问题。
+ *
+ *
+ *
+ * 示例 1:
+ *
+ * 输入: 2.00000, 10
+ * 输出: 1024.00000
+ * 示例 2:
+ *
+ * 输入: 2.10000, 3
+ * 输出: 9.26100
+ * 示例 3:
+ *
+ * 输入: 2.00000, -2
+ * 输出: 0.25000
+ * 解释: 2-2 = 1/22 = 1/4 = 0.25
+ *
+ *
+ * 说明:
+ *
+ * -100.0 < x < 100.0
+ * n 是 32 位有符号整数,其数值范围是 [−2^31, 2^31 − 1] 。
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/shu-zhi-de-zheng-shu-ci-fang-lcof
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _16_myPow {
+
+ public static void main(String[] args) {
+ _16_myPow myPow = new _16_myPow();
+ System.out.println(myPow.myPow(2.0,10));
+ System.out.println(myPow.myPow(2.1,3));
+ System.out.println(myPow.myPow(2.0,-2));
+ System.out.println(myPow.myPow(0.00001, 2147483647));
+ System.out.println(myPow.myPow(2, -2147483648));
+ }
+
+ /**
+ * 解题思路:
+ * 最简单的方式就是直接循环0-n,将x相乘得出结果,题目中的n范围比较大,这样子效率太低
+ * 优化:类似2分拆分,一半一半的计算结果,最终相乘
+ * @param x
+ * @param n
+ * @return
+ */
+ public double myPow(double x, int n) {
+ if (n == 0) return 1;
+ if (n<0){
+ //指数是否负数,负数需要取倒数
+ x = 1/x;
+ }
+ //是否取一半还有剩余一个
+ boolean isOdd = n % 2 != 0;
+ double v = myPow(x, Math.abs(n / 2));
+ if (isOdd) {
+ return v * v * x;
+ } else {
+ return v * v;
+ }
+ }
+
+}
diff --git a/src/pp/arithmetic/offer/_17_printNumbers.java b/src/pp/arithmetic/offer/_17_printNumbers.java
new file mode 100644
index 0000000..6eb52a1
--- /dev/null
+++ b/src/pp/arithmetic/offer/_17_printNumbers.java
@@ -0,0 +1,56 @@
+package pp.arithmetic.offer;
+
+import pp.arithmetic.Util;
+
+/**
+ * Created by wangpeng on 2020-08-11.
+ *
+ * 剑指 Offer 17. 打印从1到最大的n位数
+ *
+ * 输入数字 n,按顺序打印出从 1 到最大的 n 位十进制数。比如输入 3,则打印出 1、2、3 一直到最大的 3 位数 999。
+ *
+ * 示例 1:
+ *
+ * 输入: n = 1
+ * 输出: [1,2,3,4,5,6,7,8,9]
+ *
+ *
+ * 说明:
+ *
+ * 用返回一个整数列表来代替打印
+ * n 为正整数
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/da-yin-cong-1dao-zui-da-de-nwei-shu-lcof
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _17_printNumbers {
+
+ public static void main(String[] args) {
+ _17_printNumbers printNumbers = new _17_printNumbers();
+ Util.printArray(printNumbers.printNumbers(1));
+ Util.printArray(printNumbers.printNumbers(2));
+ Util.printArray(printNumbers.printNumbers(3));
+ }
+
+ /**
+ * 解题思路:
+ * 本题没有什么难度,唯一难的就是咋根据n构建出相应size的数组
+ *
+ * @param n
+ * @return
+ */
+ public int[] printNumbers(int n) {
+ char[] len = new char[n];
+ for (int i = 0; i < n; i++) {
+ len[i] = '9';
+ }
+ int size = Integer.parseInt(new String(len));
+ int[] retVal = new int[size];
+ for (int i = 0; i < size; i++) {
+ retVal[i] = i+1;
+ }
+
+ return retVal;
+ }
+}
diff --git a/src/pp/arithmetic/offer/_18_deleteNode.java b/src/pp/arithmetic/offer/_18_deleteNode.java
new file mode 100644
index 0000000..0f4dd2e
--- /dev/null
+++ b/src/pp/arithmetic/offer/_18_deleteNode.java
@@ -0,0 +1,74 @@
+package pp.arithmetic.offer;
+
+import pp.arithmetic.Util;
+import pp.arithmetic.model.ListNode;
+
+/**
+ * Created by wangpeng on 2020-09-09.
+ * 剑指 Offer 18. 删除链表的节点
+ *
+ * 给定单向链表的头指针和一个要删除的节点的值,定义一个函数删除该节点。
+ *
+ * 返回删除后的链表的头节点。
+ *
+ * 注意:此题对比原题有改动
+ *
+ * 示例 1:
+ *
+ * 输入: head = [4,5,1,9], val = 5
+ * 输出: [4,1,9]
+ * 解释: 给定你链表中值为 5 的第二个节点,那么在调用了你的函数之后,该链表应变为 4 -> 1 -> 9.
+ * 示例 2:
+ *
+ * 输入: head = [4,5,1,9], val = 1
+ * 输出: [4,5,9]
+ * 解释: 给定你链表中值为 1 的第三个节点,那么在调用了你的函数之后,该链表应变为 4 -> 5 -> 9.
+ *
+ *
+ * 说明:
+ *
+ * 题目保证链表中节点的值互不相同
+ * 若使用 C 或 C++ 语言,你不需要 free 或 delete 被删除的节点
+ *
+ * 来源:力扣(LeetCode)
+ * 链接:https://leetcode-cn.com/problems/shan-chu-lian-biao-de-jie-dian-lcof
+ * 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
+ */
+public class _18_deleteNode {
+
+ public static void main(String[] args) {
+ _18_deleteNode deleteNode = new _18_deleteNode();
+ ListNode head = new ListNode(4);
+ head.next = new ListNode(5);
+ head.next.next = new ListNode(1);
+ head.next.next.next = new ListNode(9);
+ ListNode listNode = deleteNode.deleteNode(head, 4);
+ Util.printListNode(listNode);
+ }
+
+ /**
+ * 解题思路:
+ * 对于链表的问题,最核心的思想就是遍历,使用一个虚拟节点指向头结点,用来缓存返回结果
+ *
+ * @param head
+ * @param val
+ * @return
+ */
+ public ListNode deleteNode(ListNode head, int val) {
+ ListNode dummp = new ListNode(0);
+ dummp.next = head;
+ ListNode pre = dummp;
+ ListNode next = head;
+ while (next != null) {
+ if (next.val == val) {
+ pre.next = next.next;
+ next.next = null;
+ return dummp.next;
+ }
+ pre = next;
+ next = next.next;
+ }
+
+ return null;
+ }
+}
> lists) {
+ for (int i = 0; i < lists.size(); i++) {
+ System.out.print("[ ");
+ for (int j = 0; j < lists.get(i).size(); j++) {
+ System.out.print(lists.get(i).get(j) + " ");
+ }
+ System.out.print("]");
+ System.out.println();
+ }
+ }
+
public static void printStringList(List
> lists = levelOrder.levelOrder(Util.generateTreeNode());
+ for (int i = 0; i < lists.size(); i++) {
+ Util.printList(lists.get(i));
+ }
+ List
> lists2 = levelOrder.levelOrder2(Util.generateTreeNode());
+ for (int i = 0; i < lists2.size(); i++) {
+ Util.printList(lists2.get(i));
+ }
+ }
+
+ /**
+ * 解题思路:
+ * 按层次遍历,类似于BFS,用一个队列保存遍历结果
+ * 1.将(根)节点存入队列
+ * 2.将队列中数据取空
+ * 3.将取出的treeNode的左右子树存入队列并将结果存入结果集
+ * 4.重复1-3直到队列无数据
+ *
+ * 优化:可以把2-3合并成一步,你会咋弄?
+ * 优化方案{@link _102_levelOrder#levelOrder2(TreeNode)}
+ *
+ * @param root
+ * @return
+ */
+ public List
> levelOrder(TreeNode root) {
+ List
> result = new ArrayList<>();
+ if (root == null) return result;
+ Queue
> levelOrder2(TreeNode root) {
+ List
> result = new ArrayList<>();
+ if (root == null) return result;
+ Queue
> lists = levelOrderBottom.levelOrderBottom(node);
+ for (int i = 0; i < lists.size(); i++) {
+ Util.printList(lists.get(i));
+ }
+ }
+
+ /**
+ * 解题思路:
+ * 树的问题就是遍历,本题用树的广度遍历(BFS)
+ * BFS遍历依赖队列保存一层的节点
+ *
+ * @param root
+ * @return
+ */
+ public List
> levelOrderBottom(TreeNode root) {
+ List
> retList = new ArrayList<>();
+ if (root == null) return retList;
+ Queue
> list = generate.generate(5);
+ for (int i = 0; i < list.size(); i++) {
+ Util.printList(list.get(i));
+ }
+ }
+
+ /**
+ * 解题思路:
+ * 0、用一个list数组保存上一行的遍历结果
+ * 1、当下一行是头和尾,直接赋值1
+ * 2、当下一行在中间位置j,结果=preItem.get(j - 1) + preItem.get(j)
+ *
+ * 执行用时 :1 ms, 在所有 java 提交中击败了98.18%的用户
+ * 内存消耗 :34.5 MB, 在所有 java 提交中击败了25.70%的用户
+ * @param numRows
+ * @return
+ */
+ public List
> generate(int numRows) {
+ List
> retList = new ArrayList<>();
+ List
> partition(String s) {
+ List
> retList = new ArrayList<>();
+ dfs(retList,new ArrayList<>(),s,0);
+ return retList;
+ }
+
+ private void dfs(List
> retList, List
> equations = new ArrayList<>();
+ equations.add(generateList("x1", "x2"));
+ equations.add(generateList("x2", "x3"));
+ equations.add(generateList("x3", "x4"));
+ equations.add(generateList("x4", "x5"));
+ double[] values = new double[]{3.0,4.0,5.0,6.0};
+ List
> queries = new ArrayList<>();
+ queries.add(generateList("x1", "x5"));
+ queries.add(generateList("x5", "x2"));
+ queries.add(generateList("x2", "x4"));
+ queries.add(generateList("x2", "x2"));
+ queries.add(generateList("x2", "x9"));
+ queries.add(generateList("x9", "x9"));
+
+ //[["x1","x2"],["x2","x3"],["x3","x4"],["x4","x5"]]
+ //[3.0,4.0,5.0,6.0]
+ //[["x1","x5"],["x5","x2"],["x2","x4"],["x2","x2"],["x2","x9"],["x9","x9"]]
+ //求解
+ double[] doubles = calcEquation.calcEquation(equations, values, queries);
+ for (int i = 0; i < doubles.length; i++) {
+ System.out.println(doubles[i]);
+ }
+ }
+
+ private static List
> equations, double[] values, List
> queries) {
+ double[] ret = new double[queries.size()];
+ HashMap
> lists = combinationSum.combinationSum(new int[]{1,2}, 2);
+ List
> lists = combinationSum.combinationSum(new int[]{2, 3, 5}, 8);
+ for (int i = 0; i < lists.size(); i++) {
+ Util.printList(lists.get(i));
+ }
+ }
+
+ /**
+ * 解题思路:
+ * 1.先对数组进行排序
+ * 2.循环数组,从第0位开始取数,不断叠加直到(c[i]/target的除数)
+ * 3.如 == target,则保存下来
+ * 4.如 > target,则--当前数的个数,循环步骤2
+ * 5.如 < target,则取下一位
+ *
+ * @param candidates
+ * @param target
+ * @return
+ */
+ public List
> combinationSum(int[] candidates, int target) {
+ List
> retList = new ArrayList<>();
+ //排序
+ Arrays.sort(candidates);
+ //递归循环
+ combinationSum(candidates, target, 0, retList, new ArrayList<>(), 0);
+
+ return retList;
+ }
+
+ private void combinationSum(int[] candidates,
+ int target,
+ int index,
+ List
> retList,
+ List
> list = permute.permute(new int[]{1, 2, 3});
+ for (int i = 0; i < list.size(); i++) {
+ Util.printList(list.get(i));
+ }
+ }
+
+ /**
+ * 解题思路(回溯算法):
+ * 根据题意,数组中的每一个数字,都可能出现在排列中的任何位置,所以一个个的去试着放
+ * 1、将数组转换成一个list,再定义一个itemList保存遍历结果,retList保存返回结果
+ * 2、循环list下标index,取index的数加入itemList,将其移除list
+ * 3、再将剩余的list重复第2步
+ * 4、当itemList的大小==数组大小,添加到retList
+ * 5、回退第2步,将之前移除的数组添加到list中,并从itemList中移除
+ *
+ * @param nums
+ * @return
+ */
+ public List
> permute(int[] nums) {
+ List
> retList = new ArrayList<>();
+ List
> retList,
+ List
> lists = permuteUnique.permuteUnique(new int[]{1, 1, 2, 2});
+ for (int i = 0; i < lists.size(); i++) {
+ Util.printList(lists.get(i));
+ }
+ }
+
+ /**
+ * 解题思路:
+ * 整体思路类似 {@link _46_permute},其中需要注意的一点是,重复数字再取的时候得跳过
+ * 1.先对数组进行排序
+ * 2.采用回溯算法进行取数,当即将取到的数和之前回退回来的数一致的时候,再向上一层回溯
+ *
+ * @param nums
+ * @return
+ */
+ public List
> permuteUnique(int[] nums) {
+ List
> retList = new ArrayList<>();
+ Arrays.sort(nums);
+ List
> retList,
+ List
> lists = combine.combine(4, 2);
+ for (int i = 0; i < lists.size(); i++) {
+ Util.printList(lists.get(i));
+ }
+ }
+
+ /**
+ * 解题思路(回溯算法):
+ * 1.从list中开始取,一直取到k位
+ * 2.取的数放在一个list中,方便增减
+ * 3.取到k位后,回退到上一位,取没有取到的数字,直到全部取完
+ *
> combine(int n, int k) {
+ List
> retList = new ArrayList<>();
+ dfs(retList, new LinkedList<>(), 0, 1, n, k);
+ return retList;
+ }
+
+ /**
+ * DFS遍历
+ * @param retList 返回结果
+ * @param itemList 取数集合
+ * @param preNum 之前取的数
+ * @param index 当前第几位
+ * @param n n个数
+ * @param k 取k位
+ */
+ private void dfs(List
> retList,
+ List