Skip to content
This repository has been archived by the owner on Nov 8, 2023. It is now read-only.

Latest commit

History

History
19 lines (16 loc) 路 480 Bytes

stable_sort.md

File metadata and controls

19 lines (16 loc) 路 480 Bytes

stable_sort

Description : This function sorts the array.stable_sort sorts the elements maintaining their order as in the original array unline sort.

Example :

    //sample array
    int ar[] = {1,1,3,5,4,9,4};
    //sorting the array
    std::stable_sort(ar,ar+7);
    //array after sorting
    for(int i = 0;i < 7;i++){
        std::cout << ar[i] << " ";
    }
    //outputs 1 1 3 4 4 5 9
    return 0;

Run Code