-
Notifications
You must be signed in to change notification settings - Fork 147
/
Copy path15_sort_string.cpp
43 lines (32 loc) · 985 Bytes
/
15_sort_string.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include<bits/stdc++.h>
//adding reqiured library
using namespace std;
int main()
{
int n;
cin>>n;
//take integer input n which is the size of string S.
string S;
cin>>S;
//take a string input S.
char temp;
//Declare a temporary variable for swapping the characters
//use bubble sort to arrange the string in a definite order
// Use a nested for loop to compare the characters and traverse through the string
for (int i = 0; i < n; i++){
for (int j = 0; j < n - 1; j++){
if (S[j] > S[j + 1]){
//if j has larger ascii value than the next,
//swapping the prev and next characters
temp = S[j];
S[j] = S[j + 1];
S[j + 1] = temp;
}
}
}
//Continue swapping until both the iterations are complete and the outer loop’s condition evaluates to false.
//Hence, the string is sorted.
cout << S;
//Print String after sorting it.
return 0;
}