|
| 1 | +/** |
| 2 | + * @file |
| 3 | + * @brief pancake sort sorts a disordered stack of pancakes by flipping any number of pancakes using a spatula using minimum number of flips. |
| 4 | + * |
| 5 | + * @details |
| 6 | + * Unlike a traditional sorting algorithm, which attempts to sort with the fewest comparisons possible, |
| 7 | + * the goal is to sort the sequence in as few reversals as possible. |
| 8 | + * Overall time complexity of pancake sort is O(n^2) |
| 9 | + * For example: example 1:- |
| 10 | + * Disordered pancake sizes: {2,5,3,7,8} |
| 11 | + * Sorted: {2,3,5,7,8} |
| 12 | + * For example: example 2:- |
| 13 | + * Disordered pancake sizes: {22,51,37,73,81} |
| 14 | + * Sorted: {22,37,51,73,81} |
| 15 | + * @author [Divyansh Gupta](https://github.com/divyansh12323) |
| 16 | + * @see more on [Pancake sort](https://en.wikipedia.org/wiki/Pancake_sorting) |
| 17 | + * @see related problem at [Leetcode](https://leetcode.com/problems/pancake-sorting/) |
| 18 | +*/ |
| 19 | + |
| 20 | +#include <iostream> // for io operations |
| 21 | +#include <vector> // for std::vector |
| 22 | +#include <algorithm> // for std::is_sorted |
| 23 | +#include <cassert> // for std::assert |
| 24 | + |
| 25 | +/** |
| 26 | + * @namespace sorting |
| 27 | + * @brief Sorting algorithms |
| 28 | + */ |
| 29 | +namespace sorting { |
| 30 | +/** |
| 31 | + * @namespace pancake_sort |
| 32 | + * @brief Functions for [Pancake sort](https://en.wikipedia.org/wiki/Pancake_sorting) algorithm |
| 33 | + */ |
| 34 | +namespace pancake_sort { |
| 35 | + /** |
| 36 | + * @brief This implementation is for reversing elements in a a C-style array . |
| 37 | + * @param [start,end] arr our vector of elements. |
| 38 | + * @param start starting index of array |
| 39 | + * @param end ending index of array |
| 40 | + * @returns void |
| 41 | + */ |
| 42 | + template<typename T> |
| 43 | + void reverse(std::vector<T> &arr, int start, int end) { |
| 44 | + T temp; //Temporary variable |
| 45 | + while (start <= end) { |
| 46 | + temp = arr[start]; |
| 47 | + arr[start] = arr[end]; |
| 48 | + arr[end] = temp; |
| 49 | + start++; |
| 50 | + end--; |
| 51 | + } |
| 52 | + } |
| 53 | + /** |
| 54 | + * @brief This implementation is for a C-style array input that gets modified in place. |
| 55 | + * @param [start,end] arr our vector of elements. |
| 56 | + * @param size size of given array |
| 57 | + * @returns 0 on exit |
| 58 | + */ |
| 59 | + template<typename T> |
| 60 | + int pancakeSort(std::vector<T> &arr, int size) { |
| 61 | + for (int i = size; i > 1; --i) { |
| 62 | + int max_index = 0, j; //intialize some variables. |
| 63 | + T max_value = 0; |
| 64 | + for (j = 0; j < i; j++) { |
| 65 | + if (arr[j] >= max_value) { |
| 66 | + max_value = arr[j]; |
| 67 | + max_index = j; |
| 68 | + } |
| 69 | + } |
| 70 | + if (max_index != i - 1) //check for reversing |
| 71 | + { |
| 72 | + reverse(arr, 0, max_index); |
| 73 | + reverse(arr, 0, i - 1); |
| 74 | + } |
| 75 | + } |
| 76 | + return 0; |
| 77 | + } |
| 78 | +} // namespace pancake_sort |
| 79 | +} // namespace sorting |
| 80 | + |
| 81 | +/** |
| 82 | + * @brief Test implementations |
| 83 | + * @returns void |
| 84 | + */ |
| 85 | +static void test() { |
| 86 | + // example 1: vector of int |
| 87 | + const int size1 = 7; |
| 88 | + std::cout << "\nTest 1- as std::vector<int>..."; |
| 89 | + std::vector<int> arr1 = {23, 10, 20, 11, 12, 6, 7}; |
| 90 | + sorting::pancake_sort::pancakeSort(arr1, size1); |
| 91 | + assert(std::is_sorted(arr1.begin(), arr1.end())); |
| 92 | + std::cout << "Passed\n"; |
| 93 | + for (int i = 0; i < size1; i++) { |
| 94 | + std::cout << arr1[i] << " ,"; |
| 95 | + } |
| 96 | + std::cout << std::endl; |
| 97 | + |
| 98 | + // example 2: vector of double |
| 99 | + const int size2 = 8; |
| 100 | + std::cout << "\nTest 2- as std::vector<double>..."; |
| 101 | + std::vector<double> arr2 = {23.56, 10.62, 200.78, 111.484, 3.9, 1.2, 61.77, 79.6}; |
| 102 | + sorting::pancake_sort::pancakeSort(arr2, size2); |
| 103 | + assert(std::is_sorted(arr2.begin(), arr2.end())); |
| 104 | + std::cout << "Passed\n"; |
| 105 | + for (int i = 0; i < size2; i++) { |
| 106 | + std::cout << arr2[i] << ", "; |
| 107 | + } |
| 108 | + std::cout << std::endl; |
| 109 | + |
| 110 | + // example 3:vector of float |
| 111 | + const int size3 = 7; |
| 112 | + std::cout << "\nTest 3- as std::vector<float>..."; |
| 113 | + std::vector<float> arr3 = {6.56, 12.62, 200.78, 768.484, 19.27, 68.87, 9.6}; |
| 114 | + sorting::pancake_sort::pancakeSort(arr3, size3); |
| 115 | + assert(std::is_sorted(arr3.begin(), arr3.end())); |
| 116 | + std::cout << "Passed\n"; |
| 117 | + for (int i = 0; i < size3; i++) { |
| 118 | + std::cout << arr3[i] << ", "; |
| 119 | + } |
| 120 | + std::cout << std::endl; |
| 121 | +} |
| 122 | +/** |
| 123 | + * @brief Main function |
| 124 | + * @returns 0 on exit |
| 125 | + */ |
| 126 | +int main() { |
| 127 | + test(); |
| 128 | + return 0; |
| 129 | +} |
0 commit comments