当前位置:   article > 正文

Java-排序算法-复盘知识点

Java-排序算法-复盘知识点

刷了24道简单排序题,18道中等排序题之后,给排序算法来个简单的复盘(从明天开始刷动态规划咯)

1.对于找多数元素(出现次数超过一半的元素)可以使用摩尔投票法

2.HashSet的add方法非常实用:如果集合里面不存在这个数,就添加,并且返回true;如果存在,就返回false

3.数组.toCharArray方法可以把字符串变成数组

4. Arrays.equals(str1, str2);可以用来判断两个数组是否相等

5.Arrays.sort()可以把一个数组从小到大排好序,如果需要从大到小排序,可以重写compare方法:

  1. int ans[][]=new int[2][2];
  2. Arrays.sort(ans, new Comparator<int[]>() {
  3. @Override
  4. public int compare(int[] ans1, int[] ans2) {
  5. return ans1[1]-ans2[1];
  6. }
  7. });

6.

  1. set2.stream().mapToInt(Integer::intValue).toArray();
  2. //这行代码的作用是将一个Set<Integer>集合转换成一个包含相同整数值的int[]数组。
  3. 这个过程通过流操作实现,利用了Java 8的函数式编程特性,使得代码更加简洁和易于理解。

7.HashSet的contains方法可以判断集合里面是否含有这个数

8.

  1. map.put(x,(map.getOrDefault(x,0)+1));
  2. //这一句的意思是如果map里面有键是x的,就把值+1;如果没有,就添加一个键为x值为1的对

9.

  1. map.containsKey(x) //判断是否有键为x的对
  2. map.get(x)//获取键为x的值

10.

  1. ans[a] = String.valueOf(score.length - i);
  2. //计算score字符串的长度减去i的值,将这个结果转换成字符串,
  3. //然后将这个字符串赋值给ans数组在索引a位置上的元素
  4. //这种操作在处理字符串、数组和循环时非常常见,特别是在需要根据某些条件生成或修改数组元素时

11.Math.max()求最大值

12.

  1. List<List<Integer>> list=new ArrayList<>();
  2. List<Integer> list1 = Arrays.asList(0, 0, 0);
  3. list.add(list1);
  4. //之所以会用List<Integer> list1 = Arrays.asList(0, 0, 0);是因为数组初始化器(即大括号{}中的元素列表)只能用于初始化数组,而不能直接用于初始化集合(如List、Set等)
  5. //要初始化一个包含特定元素的列表,你可以使用Arrays.asList()或者ArrayList的构造函数结合add()方法。
  6. //ArrayList的构造函数结合add()方法
  7. List<Integer> list1 = new ArrayList<>();
  8. list1.add(0);
  9. list1.add(0);
  10. list1.add(0);

13.

  1. Set<List<Integer>> uniqueList=new LinkedHashSet<>();
  2. //通过LinkedHashSet实现了对List<Integer>列表的去重
  3. for(List<Integer> x:list){
  4. uniqueList.add(x);
  5. }
  6. List<List<Integer>> list2=new ArrayList<>(uniqueList);//uniqueList中的元素被复制到一个新的ArrayList中
  7. //由于uniqueList是一个Set,它自动处理元素的唯一性。如果尝试添加一个已经存在于集合中的元素(在这个上下文中是List<Integer>对象),那么该元素将不会被添加。
  8. //这意味着,如果list中包含重复的List<Integer>列表(即内容完全相同的列表),那么uniqueList中将只包含这些列表的唯一副本。
  9. //注意,这里的“内容完全相同”是指列表中的元素顺序和值都相同。如果两个列表包含相同的元素但顺序不同,它们将被视为不同的列表。

14.

  1. Math.abs(a-b)
  2. //Math.abs(sum-target) 在编程中是一个表达式,
  3. //用于计算 a(某个总和或数值)与 b(目标值)之间的差的绝对值。

15.

  1. List<String> list = map.getOrDefault(key, new ArrayList<String>());
  2. //从map中获取与key相关联的字符串列表。如果map中包含该key,则返回对应的字符串列表;
  3. //如果不包含,则返回一个新的空字符串列表,并将这个列表赋值给list变量

16.

  1. Map<Integer,Integer>map=new TreeMap<>();
  2. //TreeMap 可以实现内部排序。当你将键值对添加到 TreeMap 时,这些键值对会根据键的自然顺序
  3. //(如果键实现了 Comparable 接口)或者根据创建 TreeMap 时指定的 Comparator 进行排序

17.

  1. for (Map.Entry<Integer, Integer> entry : map.entrySet()) {//可以实现Map<Integer, Integer>的遍历
  2. int key = entry.getKey();
  3. int count = entry.getValue();
  4. }

18.复习一下我的主页里面的《Java中等题-对链表进行插入排序》

  1. class Solution {
  2. public ListNode insertionSortList(ListNode head) {
  3. if(head==null){
  4. return head;
  5. }
  6. ListNode drummy=new ListNode(0);
  7. drummy.next=head;
  8. ListNode lastSort=head,curr=head.next;
  9. while(curr!=null){
  10. if(lastSort.val<=curr.val){
  11. lastSort=lastSort.next;
  12. }else{
  13. ListNode pre=drummy;
  14. while(pre.next.val<=curr.val){
  15. pre=pre.next;
  16. }
  17. lastSort.next=curr.next;
  18. curr.next=pre.next;
  19. pre.next=curr;
  20. }
  21. curr=lastSort.next;
  22. }
  23. return drummy.next;
  24. }
  25. }

19.复习一下我主页里面的《Java中等题-排序链表》

  1. class Solution {
  2. public ListNode sortList(ListNode head) {
  3. if(head==null||head.next==null){ //如果链表为空或者只有一个数,那就直接返回
  4. return head;
  5. }
  6. ListNode slow=head,fast=head;
  7. while(fast.next!=null&&fast.next.next!=null){//使用快慢指针法找到中点
  8. fast=fast.next.next;
  9. slow=slow.next;
  10. }
  11. fast=slow.next;//用fast来指向第二段链表的开头
  12. slow.next=null;//把链表分成两段
  13. ListNode left=sortList(head);
  14. ListNode right=sortList(fast);
  15. ListNode vhead=new ListNode(-1);
  16. ListNode curr=vhead;
  17. while(left!=null&&right!=null){
  18. if(left.val<= right.val){
  19. curr.next=left;
  20. left=left.next;
  21. }else{
  22. curr.next=right;
  23. right=right.next;
  24. }
  25. curr=curr.next;//不要漏掉
  26. }
  27. curr.next=left!=null?left:right;//把剩下的那段直接接上去
  28. return vhead.next;
  29. }
  30. }

20.Math.pow 是 Java 中的一个静态方法,用于计算第一个参数的第二个参数次幂的值
由于 Math.pow 返回的是 double 类型的值,即使你传入的参数是整数,结果也会是 double 类型的

21. 复习手搓大根堆,可以看我的主页的《Java中等题-数组中的第k个最大元素(力扣)》

  1. class Solution {
  2. public int findKthLargest(int[] nums, int k) {
  3. int heapSize=nums.length;
  4. buildHeap(nums,heapSize);
  5. for(int i=nums.length-1;i>=nums.length-k+1;i--){
  6. swap(nums,i,0);
  7. heapSize--;
  8. maxHeap(nums,heapSize,0);
  9. }
  10. return nums[0];
  11. }
  12. public static void buildHeap(int[] nums,int heapSize){
  13. for(int i=heapSize/2;i>=0;i--){
  14. maxHeap(nums,heapSize,i);
  15. }
  16. }
  17. public static void maxHeap(int[] nums,int heapSize,int maxSize){
  18. int l=maxSize*2+1;
  19. int r=maxSize*2+2;
  20. int i=maxSize;
  21. if(l<heapSize&&nums[l]>nums[i]){
  22. i=l;
  23. }
  24. if(r<heapSize&&nums[r]>nums[i]){
  25. i=r;
  26. }
  27. if(i!=maxSize){
  28. swap(nums,i,maxSize);
  29. maxHeap(nums,heapSize,i);
  30. }
  31. }
  32. public static void swap(int[] nums,int a,int b){
  33. int temp=nums[a];
  34. nums[a]=nums[b];
  35. nums[b]=temp;
  36. }
  37. }

22.

  1. PriorityQueue<Integer> pq = new PriorityQueue<>(new Comparator<Integer>() {
  2. @Override
  3. // 比较器实现,根据元素在map中的频率来比较两个元素
  4. public int compare(Integer a, Integer b) {
  5. return map.get(a) - map.get(b);
  6. }
  7. });

23.Arrays.fill(dp, 1);//初始化dp的每个元素为1

24.复习大根堆的经典使用场景,看我的主页的《Java中等题-有序矩阵中第k小的元素(力扣)》

25.

  1. int res[]=Arrays.copyOfRange(temp,0,p);
  2. //int res[] = Arrays.copyOfRange(temp, 0, p); 这行代码在Java中的意思是从一个已存在的整型数组temp中复制一部分元素到一个新的整型数组res中
  3. int from:起始索引(包含),即从哪里开始复制。索引从0开始。
  4. int to:结束索引(不包含),即复制到哪里停止。注意,这个索引处的元素不会被复制。

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

闽ICP备14008679号