当前位置:   article > 正文

leetcode java数据结构算法整理(更新中)_leetcode java 常用算法

leetcode java 常用算法

目录

github地址

1.链表反转

2.快速排序

3.归并排序

4.两数之和

5.两数相加

6.无重复字符的最长子串

7.三个数的乘积

8.二叉树的最小高度--->深度优先(栈)

递归没看懂的可以留言。

9.二叉树的最小高度--->广度优先算法(队列)

10.最长连续递增数列-->贪心算法

11.最长的回文子字符串


github地址

1.链表反转

2.快速排序

  1. public static int[] quickSortFun(int[] arr, int low, int high) {
  2. if (low < high) {
  3. int mid = qSort(arr, low, high);
  4. quickSortFun(arr, low, mid - 1);
  5. quickSortFun(arr, mid + 1, high);
  6. }
  7. return arr;
  8. }
  9. private static int qSort(int[] arr, int low, int high) {
  10. int prviod = arr[high];
  11. int i = low - 1;
  12. int j = high;
  13. while (i < j) {
  14. while (arr[++i] < prviod && i < j) ;
  15. arr[j] = arr[i];
  16. while (arr[--j] > prviod && i < j) ;arr[i] = arr[j];
  17. }
  18. arr[i] = prviod;
  19. return i;
  20. }

执行顺序:

  1. 原数组:1253470
  2. 1)以0作为基准数
  3. 0,(253471
  4. 2)以1为基准数
  5. 01,(53472
  6. 3)以2为基准数
  7. 012,(3475
  8. 4)以5为基准数
  9. 012,(345,(7
  10. 5)以4为基准数,以7为基准数
  11. 0123457

3.归并排序

  1. public static void main(String[] args) {
  2. int[] arr = {2, 1, 5, 3, 9, 4, 0};
  3. System.out.println("初始数组:" + Arrays.toString(arr));
  4. mergeSort1(arr, 0, arr.length - 1);
  5. System.out.println("排序后数组:" + Arrays.toString(arr));
  6. }
  7. private static void mergeSort1(int[] arr, int low, int high) {
  8. if (low >= high) return;
  9. int mid = (high + low) / 2;
  10. mergeSort1(arr, low, mid);
  11. mergeSort1(arr, mid + 1, high);
  12. merge(arr, low, mid, high);
  13. }
  14. private static void merge(int[] arr, int low, int mid, int high) {
  15. int[] ret = new int[high - low + 1];
  16. int s1 = low;
  17. int s2 = mid + 1;
  18. int index = 0;
  19. while (s1 <= mid && s2 <= high) ret[index++] = arr[s1] < arr[s2] ? arr[s1++] : arr[s2++];
  20. while (s2 <= high) ret[index++] = arr[s2++];
  21. while (s1 <= mid) ret[index++] = arr[s1++];
  22. for (int j = 0; j < ret.length; j++) arr[j + low] = ret[j];
  23. }

 

  1. 初始数组:[2, 1, 5, 3, 9, 4, 0]
  2. 排序后数组:[0, 1, 2, 3, 4, 5, 9]

4.两数之和

  1. public class LeetCode1_twoSum {
  2. /**
  3. * 解体思路:
  4. * 1.创建一个map
  5. * 2.for循环遍历nums数组
  6. * 3.用target减去nums[i]
  7. * 以计算那个数能根当前的数字相加得到target
  8. * 4.检查map里面有没有这个数,
  9. * 如果有则返回结果
  10. * 如果没有则把nums[i]当作key
  11. * i作为value放入map中
  12. */
  13. public static void main(String[] args) {
  14. int[] nums = {2, 3, 11, 7};
  15. Map<Integer, Integer> map = new HashMap<>();
  16. int target = 9;
  17. for (int i = 0; i < nums.length; i++) {
  18. if (!map.containsKey(target - nums[i])) {
  19. map.put(nums[i], i);
  20. } else {
  21. System.out.println("第" + map.get(target - nums[i]) + "个数,即" + (target - nums[i]) + "和" + nums[i] + "的结果是" + target);
  22. }
  23. }
  24. }
  25. }
0个数,即27的结果是9

5.两数相加

  1. /**
  2. * @Title: LinkedNode
  3. * @Description: 链表节点类
  4. */
  5. public class LinkedNode {
  6. public int data;
  7. public LinkedNode next;
  8. //实例化
  9. public LinkedNode(int data) {
  10. this.data = data;
  11. }
  12. @Override
  13. public String toString() {
  14. return "LinkedNode{" +
  15. "data=" + data +
  16. ", next=" + next +
  17. '}';
  18. }
  19. }
  1. /**
  2. * @Title: SingleLinkedList
  3. * @Description: 实例化链表
  4. */
  5. public class SingleLinkedList {
  6. private LinkedNode head = new LinkedNode(0);
  7. //头节点
  8. public LinkedNode getHead() {
  9. return head;
  10. }
  11. //添加节点
  12. public void addLinkedNode(LinkedNode node) {
  13. //因为head节点是不能动得,因此我们需要一个辅助节点 temp来遍历
  14. LinkedNode temp = head;
  15. while (temp.next != null) {
  16. temp = temp.next;
  17. }
  18. temp.next = node;
  19. }
  20. //显示列表
  21. public void showLinkedList(LinkedNode head) {
  22. if (head.next == null) {
  23. System.out.println("链表为空");
  24. return;
  25. }
  26. //因为头节点不能动,所以需要辅助变量来遍历
  27. LinkedNode temp = head.next;
  28. if (temp == null) {
  29. System.out.println("空链表");
  30. return;
  31. }
  32. ArrayList<Integer> integers = new ArrayList<>();
  33. while (temp != null) {
  34. integers.add(temp.data);
  35. temp = temp.next;
  36. }
  37. //逆序输出
  38. for (int i = integers.size() - 1; i >= 0; i--) {
  39. System.out.print(integers.get(i));
  40. }
  41. }
  42. //修改链表节点数据
  43. public void updateLinkedList(LinkedNode node) {
  44. if (head.next == null) {
  45. System.out.println("空链表");
  46. return;
  47. }
  48. LinkedNode temp = head.next;
  49. boolean flag = false;
  50. while (true) {
  51. if (temp.next == null) break;
  52. if (temp.data == node.data) {
  53. flag = true;
  54. break;
  55. }
  56. temp = temp.next;
  57. }
  58. if (flag) {
  59. temp.data = node.data;
  60. } else {
  61. System.out.println("没有找到该" + node.data);
  62. }
  63. }
  64. }
  1. public class LeetCode2_AddTwoNumbers {
  2. /**
  3. * 给出两个非空的链表用来表示两个非负的整数,其中他们各自的位数是按照逆序的方式存储,并且它们的每个节点只能存储一位数字
  4. * 如果我们将这两个数相加起来,则会返回一个新的链表来表示他们的和
  5. * 例如:(2->4->3)+(5->6->7->1)=(7->0->1->2)
  6. * 原因:342+465=807
  7. */
  8. public static void main(String[] args) {
  9. /**
  10. * 初始化两个链表
  11. */
  12. SingleLinkedList l1 = new SingleLinkedList();
  13. l1.addLinkedNode(new LinkedNode(8));
  14. SingleLinkedList l2 = new SingleLinkedList();
  15. l2.addLinkedNode(new LinkedNode(2));
  16. l2.addLinkedNode(new LinkedNode(0));
  17. l2.addLinkedNode(new LinkedNode(1));
  18. /**
  19. * 结果写入到新的链表
  20. */
  21. SingleLinkedList dummy = new SingleLinkedList();
  22. LinkedNode curr = dummy.getHead();
  23. LinkedNode node1 = l1.getHead().next;
  24. LinkedNode node2 = l2.getHead().next;
  25. int carry = 0;
  26. while (node1 != null || node2 != null) {
  27. int sum = 0;
  28. if (node1 != null) {
  29. sum += node1.data;
  30. node1 = node1.next;
  31. }
  32. if (node2 != null) {
  33. sum += node2.data;
  34. node2 = node2.next;
  35. }
  36. sum += carry;
  37. LinkedNode node = new LinkedNode(sum % 10);
  38. curr.next = node;
  39. carry = sum / 10;
  40. curr = curr.next;
  41. }
  42. if(carry>0){
  43. curr.next=new LinkedNode(carry);
  44. }
  45. dummy.showLinkedList(dummy.getHead());
  46. }
  47. }

结果展示:

  1. 110
  2. Process finished with exit code 0

6.无重复字符的最长子串

  1. /**
  2. * @Title: LeetCode3_LongestSubstringWithoutRepeatingCharacters
  3. * @Description: 无重复字符的最长子串--->滑动窗口
  4. */
  5. public class LeetCode3_LongestSubstringWithoutRepeatingCharacters {
  6. public static void main(String[] args) {
  7. String word = "abcabcdb";
  8. char[] chars = word.toCharArray();
  9. List<Character> list = new ArrayList<>();
  10. int maxLength = 0, j = 0;
  11. for (int i = 0; i < chars.length; i++) {
  12. if (!list.contains(chars[i])) {
  13. list.add(chars[i]);
  14. maxLength = Math.max(maxLength, list.size());
  15. } else {
  16. while (list.contains(chars[i])) {
  17. list.remove(new Character(chars[j]));
  18. j++;
  19. }
  20. list.add(chars[i]);
  21. }
  22. }
  23. System.out.println(maxLength);
  24. }
  25. }

输出结果:

  1. 4
  2. Process finished with exit code 0

7.三个数的乘积

  1. /**
  2. * @Title: LeetCode4_ThreeNumberMultiply
  3. * @Description: 三个数的乘积:整型数组nums,在数组中找出三个数组组成的最大乘积,并输出这个乘积
  4. * 1.数组中全部为正数,选出最大的三个正数
  5. * 2.数组中全部为负数,选出最大的三个负数
  6. * 3.数组中有正有负,选出两个最小的负数乘上最大的正数,如果只有一个负数就回到 1 的情况中了
  7. * <p>
  8. * 综上所属:就只需要考虑两种情况(1)找出三个最大的数,求乘积
  9. * (2)找出两个最小的数和一个最大的数,求乘积
  10. * 判断上面两种情况那个结果最大
  11. */
  12. public class LeetCode4_ThreeNumberMultiply {
  13. public static void main(String[] args) {
  14. int[] nums = {-1, -2, 3, 4, 6, -7};
  15. System.out.println(sort(nums));
  16. System.out.println(getMaxMin(nums));
  17. }
  18. //解法1:先进行排序找出最大的数
  19. public static int sort(int[] nums) {
  20. Arrays.sort(nums);//内部使用的是快排,时间复杂度是 NlogN
  21. int n = nums.length;
  22. return Math.max(nums[0] * nums[1] * nums[n - 1], nums[n - 1] * nums[n - 2] * nums[n - 3]);
  23. }
  24. //解法2:线性扫描
  25. public static int getMaxMin(int[] nums) {
  26. int min1 = Integer.MAX_VALUE, min2 = Integer.MAX_VALUE;
  27. int max1 = Integer.MIN_VALUE, max2 = Integer.MIN_VALUE, max3 = Integer.MIN_VALUE;
  28. for (int x : nums) {
  29. //找出最小的两个数
  30. if (x < min1) {
  31. min2 = min1;
  32. min1 = x;
  33. } else if (x < min2) {
  34. min2 = x;
  35. }
  36. //找出最大的三个数
  37. if (x > max1) {
  38. max3 = max2;
  39. max2 = max1;
  40. max1 = x;
  41. } else if (x > max2) {
  42. max3 = max2;
  43. max2 = x;
  44. } else if (x > max3) {
  45. max3 = x;
  46. }
  47. }
  48. return Math.max(min1 * min2 * max1, max1 * max2 * max3);
  49. }
  50. }

结果展示:

  1. 84
  2. 84
  3. Process finished with exit code 0

8.二叉树的最小高度--->深度优先(栈)

  1. /**
  2. * @Title: LeetCode6_LongestPalidromicSubstring
  3. * @Description: 二叉树的最小深度:深度优先算法
  4. * 二叉树逻辑结构:
  5. * 1
  6. * 2 3
  7. * 4 5 6
  8. * 7
  9. */
  10. public class LeetCode6_BiTreeMinDepth {
  11. public static void main(String[] args) {
  12. //构建一颗二叉树
  13. TreeNode node7 = new TreeNode(7, null, null);
  14. TreeNode node6 = new TreeNode(6, node7, null);
  15. TreeNode node5 = new TreeNode(5, null, null);
  16. TreeNode node4 = new TreeNode(4, null, null);
  17. TreeNode node3 = new TreeNode(3, node6, null);
  18. TreeNode node2 = new TreeNode(2, node4, node5);
  19. TreeNode node1 = new TreeNode(1, node2, node3);
  20. System.out.println(minDepth(node1));
  21. }
  22. public static int minDepth(TreeNode root) {
  23. //首先判断树是否为空
  24. if (root == null) {
  25. System.out.println("二叉树为空");
  26. return 0;
  27. }
  28. //此为叶子节点
  29. if (root.left == null && root.right == null) {
  30. return 1;
  31. }
  32. int min = Integer.MAX_VALUE;
  33. if (root.left != null) {
  34. min = Math.min(minDepth(root.left), min);
  35. }
  36. if (root.right != null) {
  37. min = Math.min(minDepth(root.right), min);
  38. }
  39. return min + 1;
  40. }
  41. //二叉树的静态内部类
  42. static class TreeNode {
  43. int val;
  44. TreeNode left;
  45. TreeNode right;
  46. TreeNode(int val, TreeNode left, TreeNode right) {
  47. this.val = val;
  48. this.left = left;
  49. this.right = right;
  50. }
  51. }
  52. }

递归没看懂的可以留言。

9.二叉树的最小高度--->广度优先算法(队列)

  1. /**
  2. * @Title: LeetCode7_BiTreeMinDepthBreadth
  3. * @Description: 二叉树的最小深度:广度优先 时间复杂度:O(n) 空间复杂度:O(n)
  4. * 二叉树逻辑结构:
  5. * 1
  6. * 2 3
  7. * 4 5 6
  8. * 7
  9. */
  10. public class LeetCode7_BiTreeMinDepthBreadth {
  11. public static void main(String[] args) {
  12. //构建一颗二叉树
  13. TreeNode node7 = new TreeNode(7, null, null);
  14. TreeNode node6 = new TreeNode(6, node7, null);
  15. TreeNode node5 = new TreeNode(5, null, null);
  16. TreeNode node4 = new TreeNode(4, null, null);
  17. TreeNode node3 = new TreeNode(3, node6, null);
  18. TreeNode node2 = new TreeNode(2, node4, node5);
  19. TreeNode node1 = new TreeNode(1, node2, node3);
  20. System.out.println(minDepth(node1));
  21. }
  22. public static int minDepth(TreeNode root) {
  23. if (root == null) {
  24. return 0;
  25. }
  26. Queue<TreeNode> queue = new LinkedList();
  27. root.deep = 1;
  28. queue.offer(root);
  29. while (!queue.isEmpty()) {
  30. TreeNode node = queue.poll();
  31. if (node.left == null && node.right == null) {
  32. return node.deep;
  33. }
  34. if (node.left != null) {
  35. node.left.deep = node.deep + 1;
  36. queue.offer(node.left);
  37. }
  38. if (node.right != null) {
  39. node.right.deep = node.deep + 1;
  40. queue.offer(node.right);
  41. }
  42. }
  43. return 0;
  44. }
  45. //二叉树的静态内部类
  46. static class TreeNode {
  47. int val;
  48. TreeNode left;
  49. TreeNode right;
  50. int deep;
  51. TreeNode(int val, TreeNode left, TreeNode right) {
  52. this.val = val;
  53. this.left = left;
  54. this.right = right;
  55. }
  56. }
  57. }

10.最长连续递增数列-->贪心算法

  1. /**
  2. * @Title: LeetCode8_LongestContinuousIncreasingSequence
  3. * @Description: 给定一个未经排序的整数数组,找到最长且连续递增的子序列,并返回其长度--->贪心算法
  4. * 从数组的下标为0的位置开始,
  5. * 依次往后数当后一个数(i)大于等于前一个数(j)的时候将开始位置变为i,
  6. * 将走过的长度记录到max中
  7. * 最后返回max
  8. */
  9. public class LeetCode8_LongestContinuousIncreasingSequence {
  10. public static void main(String[] args) {
  11. int length = findLength(new int[]{1, 2, 3, 2, 3, 4, 3, 4, 5, 6});
  12. System.out.println(length);
  13. }
  14. private static int findLength(int[] ints) {
  15. int start = 0, max = 0;
  16. for (int i = 1; i < ints.length; i++) {
  17. if (ints[i] <= ints[i - 1]) {
  18. start = i;
  19. }
  20. max = Math.max(max, i - start + 1);
  21. }
  22. return max;
  23. }
  24. }

11.最长的回文子字符串

  1. /**
  2. * @Title: LeetCode5_LongestPalidromicSubstring
  3. * @Description: 最长的回文子字符串
  4. * 解题思路:
  5. * 1.如果字符串长度小于2,直接返回源字符串
  6. * 2.定义两个变量,一个start存储当前找到的最大回文字符串的起始位置,另一个maxLength记录字符串的长度(终止位置就是start+maxLength)
  7. * 3.创建一个helper function,判断左边和右边是否越界,同时最左边的字符是否等于最右边的字符。
  8. * 如果以上三个条件都满足,则判断是否需要更新回文字符串的最大长度及最大字符串的起始位置。然后将left--,right++继续判断,直到不满足三个条件为止
  9. * 4.遍历字符串,每个位置调用helper function 两遍,第一遍检查i-1,i+1,第二遍检查i ,i+1
  10. *
  11. * 时间复杂度为O(n^2)
  12. */
  13. public class LeetCode5_LongestPalidromicSubstring {
  14. public static void main(String[] args) {
  15. System.out.println(getPalidromicSubstring("abcbc"));
  16. }
  17. public static String getPalidromicSubstring(String str) {
  18. if (str.length() < 2) {
  19. return str;
  20. }
  21. int start = 0;
  22. int maxLength = 1;
  23. for (int i = 0; i < str.length(); i++) {
  24. int left = i;
  25. int right = i + 1;
  26. while (left >= 0 && right < str.length() && str.charAt(left) == str.charAt(right)) {
  27. if (right - left + 1 > maxLength) {
  28. maxLength = right - left + 1;
  29. start = left;
  30. }
  31. left--;
  32. right++;
  33. }
  34. }
  35. for (int i = 0; i < str.length(); i++) {
  36. int left = i - 1;
  37. int right = i + 1;
  38. while (left >= 0 && right < str.length() && str.charAt(left) == str.charAt(right)) {
  39. if (right - left + 1 > maxLength) {
  40. maxLength = right - left + 1;
  41. start = left;
  42. }
  43. left--;
  44. right++;
  45. }
  46. }
  47. return str.substring(start, start + maxLength);
  48. }
  49. }

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/117788?site
推荐阅读
相关标签
  

闽ICP备14008679号