Quick Sort

    0

    1

    Giovanny Gongora

    Codiga's C++ Recipes

    Quick Sort implementation

    #include <algorithm>
    #include <concepts>
    #include <vector>
    
    namespace codiga::sort {
    template <typename T>
    requires std::totally_ordered<T>
    int partition(std::vector<T>& array, int begin, int end){
      auto pivot = array[end];
      auto i = begin;
      for (auto j = i; j < end; j++) {
        if (array[j] < pivot) {
          std::swap(array[i], array[j]);
          i += 1;
        }
      }
      std::swap(array[i], array[end]);
      return i;
    }
    template <typename T>
    requires std::totally_ordered<T>
    void quick_sort(std::vector<T>& array, int begin, int end){
      if (begin <= end) {
        auto _partition = partition(array, begin, end);
        quick_sort(array, begin, _partition - 1);
        quick_sort(array, _partition + 1, end);
      }
    }
    template <typename T>
    requires std::totally_ordered<T>
    void quick_sort(std::vector<T>& array){
      auto begin = 0;
      auto end = array.size() - 1;
      quick_sort(array, begin, end);
    }
    }
    
    Codiga Logo
    Codiga Hub
    • Rulesets
    • Playground
    • Snippets
    • Cookbooks
    Legal
    • Security
    • Privacy Policy
    • Code Privacy
    • Terms of Service
    soc-2 icon

    We are SOC-2 Compliance Certified

    G2 high performer medal

    Codiga – All rights reserved 2022.