Easily master the basic programming algorithms (Part 3)

Easily master the basic programming algorithms (Part 3)

[[121972]]

Basic Programming Algorithms (I)

Basic Programming Algorithms (II)

Basic Programming Algorithms (III)

Selection Sort

Conditions of use: Collections of comparable sizes.

Algorithm idea: Each time, select the smallest (or largest) element from the data elements to be sorted, and put it at the end of the sorted sequence until all the data elements to be sorted are sorted.

Example programming: int b[10]={77,1,65,13,81,93,10,5,23,17}

  1. //Simple selection sort  
  2. void SimpleSelect( int b[10])
  3. {
  4. int temp;
  5. int i;
  6. for (i=0;i<9;i++)
  7. {
  8. for ( int j=i+1;j<9;j++)
  9. {
  10. if (b[i]>b[j])
  11. {
  12. temp=b[i];
  13. b[i]=b[j];
  14. b[j]=temp;
  15. }
  16. }
  17. }
  18. cout<< "the sort is:" ;
  19. for ( int i=0;i<10;i++)
  20. {
  21. cout<<b[i]<< " " ;
  22. }
  23. cout<<endl;
  24. }

Performance analysis: time complexity is O(n^2)

Heap Sort

Conditions of use: Collections of comparable sizes.

Algorithm idea: In fact, heap sort is an evolution of simple selection sort. It mainly reduces the number of comparisons. What is a heap? If the sequence is regarded as a complete binary tree, the values ​​of all non-terminal nodes in the complete binary tree are not greater than (or not less than) the values ​​of its left and right child nodes, which can be called a heap. From the properties of the heap, we can know that the top of the heap is a maximum keyword (or minimum keyword). After outputting the top of the heap, the remaining elements are built into a heap again, and then the top is output. Repeated execution in this way can get an ordered sequence, and this process is the achievement of heap sort.

Heap sorting is mainly divided into two steps:

(1) Build a heap from an unordered sequence.

(2) Output the top element and form a new heap.

Example programming: int b[10]={77,1,65,13,81,93,10,5,23,17}

  1. //Heap sort  
  2. void HeapSort( int b[10])
  3. {
  4. void HeapAdjuest( int b[10], int min, int max);
  5. void Sawp( int *a, int *b);
  6. int i;
  7. //Because the binary tree is completed, the heap conversion starts from the last non-leaf node  
  8. for (i=9/2;i>=0;i--)
  9. {
  10. HeapAdjuest(b,i,9);
  11. }
  12. //Take out the top data of the heap and sort it again  
  13. for (i=9;i>0;i--)
  14. {
  15. Sawp(&b[i],&b[0]);
  16. HeapAdjuest(b,0,i-1);
  17. }
  18. }
  19.  
  20. //Heap adjustment (large top heap)  
  21. //min data needs to adjust the starting position in the array  
  22. //max data needs to adjust the end position in the data  
  23. void HeapAdjuest( int b[10], int min, int max)
  24. {
  25. if (max<=min) return ;
  26. int temp;
  27. temp=b[min];
  28. int j;
  29.      
  30. // Extend its child node loop  
  31. for (j=2*min;j<=max;j*=2)
  32. {
  33. //Select its older child  
  34. if (j<max&&b[j]<b[j+1])
  35. {
  36. j++;
  37. }
  38.          
  39. //Children whose top is larger than the top of the heap will not be processed  
  40. if (temp>b[j])
  41. {
  42. break ;
  43. }
  44.          
  45. //Replace the larger number with the smaller one  
  46. b[min]=b[j];
  47. min=j;
  48. }
  49. b[min]=temp;
  50. }
  51.  
  52. //Swap function  
  53. void Sawp( int *a, int *b)
  54. {
  55. int temp;
  56. temp=*a;
  57. *a=*b;
  58. *b=temp;
  59. }

Performance analysis: Time complexity Time complexity O(nlogn)

Merge Algorithm

Also known as 2-way merge algorithm

Conditions of use: Collections of comparable sizes.

Algorithm idea: Assuming that the initial sequence contains n records, it can be regarded as n ordered subsequences, each subsequence has a length of 1, and then merged two by two to obtain [n/2] subsequences with a length of 2 or 1 (the length is 1 here, maybe the sequence length is an odd number, then the last sequence is left alone, so the length is 1); then merge two by two, and repeat this process until an ordered sequence of length n is obtained.

Example programming: int b[10]={77,1,65,13,81,93,10,5,23,17}

  1. //Merge sort  
  2. void MergeSort( int b[10], int d[10], int min, int max)
  3. {
  4. //Use and store the sequence obtained from the middle area  
  5. int c[10];
  6. void Merge( int c[10], int d[10], int min, int mid, int max);
  7. if (min==max)d[min]=b[min];
  8. else  
  9. {
  10. // Divide into two areas  
  11. int mid=(min+max)/2;
  12. //Merge and sort this area  
  13. MergeSort(b,c,min,mid);
  14. //Merge and sort this area  
  15. MergeSort(b,c,mid+1,max);
  16. //Merge the two regions  
  17. Merge(c,d,min,mid,max);
  18. }
  19. }
  20.  
  21. //Merge the ordered sequences d[min-mid] and d[mid+1-max] into the ordered sequence c[min-max]  
  22. void Merge( int c[10], int d[10], int min, int mid, int max)
  23. {
  24. int i,j,k;
  25. for (i=j=min,k=mid+1;j<=mid&&k<=max;i++)
  26. {
  27. if (c[j]>c[k])
  28. {
  29. d[i]=c[k];
  30. k++;
  31. }
  32. else  
  33. {
  34. d[i]=c[j];
  35. j++;
  36. }
  37. }
  38. if (j<=mid)
  39. {
  40. for (;j<=mid;j++,i++)
  41. {
  42. d[i]=c[j];
  43. }
  44. }
  45. if (k<=max)
  46. {
  47. for (;k<=max;k++,i++)
  48. {
  49. d[i]=c[k];
  50. }
  51. }
  52. }

Performance analysis: time complexity O(nlogn)

Summarize

So with so many sorting algorithms, when should we use which algorithm?

Because different sorting methods are suitable for different applications and requirements, choose the appropriate sorting method considering the following factors:

  • The number of records to be sorted n

  • Requirements for its stability

  • Storage Structure

  • Time and auxiliary space complexity

(1) If n is relatively small (for example, n <= 50), direct insertion sort or simple selection sort can be used.

(2) If the initial state of the sequence is basically ordered, you can choose direct insertion sort or bubble sort.

(3) If n is relatively large, an algorithm with a time complexity of O(nlogn) can be used: quick sort, heap sort, merge sort.

Quick sort is considered to be the best method for internal sorting based on comparison. When the sorted keywords are randomly distributed, quick sort has the shortest average time. Unstable

Heap sort requires less auxiliary space than quick sort, and will not encounter the worst case scenario that quick sort may encounter. But it is still relatively unstable

Merge sort is relatively stable, but it is generally not recommended to use. It has poor practicality and may occupy a large amount of auxiliary space.

<<:  Easily master the basic programming algorithms (Part 2)

>>:  Lollipop: A Completely Reborn Android 5.0

Recommend

Where can Ningbo students drink and taste tea? I'll tell you

Recommended places for drinking tea and spa in Ni...

How to plan a complete and efficient event? (Four)

This article mainly discusses how to do a complet...

Grass-growing marketing: grass-growing, advertising and bringing goods

“On Valentine’s Day, a high-end, thoughtful and i...

Pinduoduo’s monthly card operating routine!

The latest version of Pinduoduo's money-savin...

How to optimize image traffic on mobile devices

[[171480]] In addition to script style files, mos...

Germany has 1,043 new confirmed cases of COVID-19, bringing the total to 4,838

As of 15:00 local time on the 15th, data released...

On the highest realm of operation work - emotional operation

I have mentioned this point many times in my prev...

Introduction to Xiaomi Information Stream Advertising Resources

Introduction to information flow advertising reso...