selection sort
play

Selection Sort Section 10.2 Code for Selection Sort (cont.) Code - PowerPoint PPT Presentation

Selection Sort Section 10.2 Code for Selection Sort (cont.) Code for an Array Sort Code for an Array Sort Code for Selection Sort (cont.) Code for Selection Sort (cont.) Code for Selection Sort (cont.) Bubble Sort Section 10.3 Code for


  1. Selection Sort Section 10.2

  2. Code for Selection Sort (cont.)

  3. Code for an Array Sort

  4. Code for an Array Sort

  5. Code for Selection Sort (cont.)

  6. Code for Selection Sort (cont.)

  7. Code for Selection Sort (cont.)

  8. Bubble Sort Section 10.3

  9. Code for Bubble Sort

  10. Code for Bubble Sort

  11. Insertion Sort Section 10.4

  12. Code for Insertion Sort

  13. Code for Insertion Sort

  14. Using iterator_traits to Determine the Data Type of an Element  The following version of function insert follows the algorithm more closely typename std::iterator_traits<RI>::value_type next_val = *next_pos;  The statement above declares variable next_val and stores the element referenced by next_pos in it  The template class iterator_traits is defined in the header <iterator>, and value_type represents the data type of the element referenced by the iterator next_pos

  15. Using iterator_traits to Determine the Data Type of an Element (cont.) template<typename RI> void insert(RI first, RI next_pos) { typename std::iterator_traits<RI>::value_type next_val = *next_pos; // next_val is element to insert. while (next_pos != first && next_val < *(next_pos - 1)) { *next_pos = *(next_pos - 1); --next_pos; // Check next smaller element. } *next_pos = next_val; // Store next_val where it belongs. }

  16. Shell Sort: A Better Insertion Sort Section 10.6

  17. Code for Shell Sort

  18. Code for Shell Sort

  19. Code for Shell Sort

  20. Merge Sort Section 10.7

  21. Code for Merge

  22. Code for Merge

  23. Code for Merge Sort

  24. Code for Merge Sort

  25. Heapsort Section 10.8

  26. Code for Heapsort

  27. Code for Heapsort (cont.)

  28. Code for Heapsort (cont.)

  29. Quicksort Section 10.9

  30. Code for Quicksort

  31. Code for partition

  32. Code for Revised partition Function

  33. Code for Revised partition Function

  34. Testing the Sort Algorithms Section 10.10

  35. Testing the Sort Algorithms  We want to get some idea of the sorting algorithms’ relative performance when sorting the same container (array, vector, or deque)  Use a variety of test cases  small and large containers  containers with elements in random order  containers that are sorted already  containers with duplicate values

  36. Driver to Test Sort Algorithms

  37. Driver to Test Sort Algorithms

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend