-
Notifications
You must be signed in to change notification settings - Fork 0
/
practiseonly.cpp
325 lines (300 loc) · 6.2 KB
/
practiseonly.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
// // print sum
// #include<iostream>
// using namespace std;
// int sum(int n ){
// if(n==1){
// return 1;
// }
// return n+sum(n-1);
// }
// int main(){
// cout<<sum(5)<<endl;
// }
// print n*p
// #include<iostream>
// using namespace std;
// int pow(int n, int p){
// if(p==0){
// return 1;
// }
// return n*pow(n,p-1);
// }
// int main(){
// cout<<pow(4,2)<<endl;
// }
//factorial
// #include<iostream>
// using namespace std;
// int fact(int n ){
// if(n==0){
// return 1;
// }
// return n*fact(n-1);
// }
// int main(){
// cout<<fact(5)<<endl;
// }
// fabinaci
// #include<iostream>
// using namespace std;
// int fab(int n ){
// if(n==0||n==1){
// return n ;
// }
// return fab(n-1)+fab(n-2);
// }
// int main(){
// cout<<fab(7)<<endl;
// }
//check array is sorted or not
// #include<iostream>
// using namespace std;
// bool check(int arr[],int n ){
// if(n==0){
// return true;
// }
// bool restarray = check(arr+1,n-1);
// if(arr[0]<arr[1]&&restarray){
// return true;
// }else{
// return false;
// }
// }
// int main(){
// int arr[]={1,2,8,5,6,7};
// cout<<check(arr,6);
// }
//print a number in decending order
// #include<iostream>
// using namespace std;
// void dec(int n )
// {
// if(n==1){
// cout<<"1"<<endl;
// return ;
// }
// cout<<n<<endl;
// dec(n-1);
// }
// int main(){
// dec(4);
// }
// print incresing order
// #include<iostream>
// using namespace std;
// void inc(int n){
// if(n==1){
// cout<<"1"<<endl;
// return;
// }
// inc(n-1);
// cout<<n<<endl;
// }
// int main(){
// inc(4);
// }
// check the first occurns
// #include<iostream>
// using namespace std;
//
// int checkfirst(int arr[],int i,int n,int key){
// if(n==0){
// return -1;
// }
// if(arr[i]==key){
// return i;
// }
// checkfirst(arr,i+1,n-1,key);
// }
// int main(){
// int arr[]={1,1,1,1,4,1,1,1,4};
// cout<<checkfirst(arr,0,9,4);
// }
//check last occurns
// #include<iostream>
// using namespace std;
// int checklast(int arr[],int i ,int n,int key){
// if(n==i){
// return -1;
// }
// int restarray = checklast(arr,i+1,n,key);
// if(restarray!=-1){
// return restarray;
// }
// if(arr[i]==key){
// return i;
// }
// return -1;
// }
// int main(){
// int arr[]= {1,1,1,1,1,4,11,1,4};
// cout<<checklast(arr,0,9,4);
// }
// print string recursively
// #include<iostream>
// using namespace std;
// void prints(string s){
// if(s.length()==0){
// return;
// }
// char ch = s[0];
// prints(s.substr(1));
// cout<<ch<<endl;
// }
// int main(){
// prints("binod");
// }
// replace pi from the string
// #include<iostream>
// using namespace std;
// void replacepi(string s){
// if(s.length()==0){
// return ;
// }
// if(s[0]=='p'&&s[1]=='i'){
// cout<<"3.14";
// replacepi(s.substr(2));
// }else{
// cout<<s[0];
// replacepi(s.substr(1));
// }
// }
// int main(){
// replacepi("pppppppipppppippppi");
// }
// tower of hanoi
// #include<iostream>
// using namespace std;
//
// void towerofhanoi(int n,char src,char dest,char helper){
// if(n==0){
// return ;
// }
// towerofhanoi(n-1,src,helper,dest);
// cout<<" moved from "<<src<<" to "<<dest<<endl;
// towerofhanoi(n-1,helper,dest,src);
// }
// int main(){
// towerofhanoi(3,'A','C','B');
// }
//remove duplicates from the string
// #include<iostream>
// using namespace std;
// string removedup(string s){
// if(s.length()==0){
// return " " ;
// }
// char ch =s[0];
// string ans = removedup(s.substr(1));
// if(ch==ans[0]){
// return ans;
// }else{
// return (ch+ans);
// }
// }
// int main(){
// cout<<removedup("aaaaabbbbbcccccdddd");
// }
//move all x into the last of the string
// #include<iostream>
// using namespace std;
// string movex(string s){
// if(s.length()==0){
// return "";
// }
// char ch =s[0];
// char hd= s[1];
// string ans=movex(s.substr(1));
// if(ch=='x'){
// return ans+hd+ch;
// }
// if(hd=='i'){
// return ans+hd+ch;
// }else{
// return ch+to_string(hd)+ans;
// }
// }
// int main(){
// cout<<movex("xijxjxijijxjiixjxjijxjijixijxjxixjxjijxjjxijijxijixjxjjixjijijixjijxijijijijx");
// }
// substring of the string
// #include<iostream>
// using namespace std;
// void subseq(string s,string ans ){
// if(s.length()==0){
// cout<<ans<<endl;
// return ;
// }
// char ch =s[0];
// string ros=s.substr(1);
// subseq(ros,ans);
// subseq(ros,ans+ch);
// }
// int main(){
// subseq("ABC","");
// cout<<endl;
// }
//generate substring with ascii number
// #include<iostream>
// using namespace std;
// void subseq(string s , string ans){
// if(s.length()==0){
// cout<<ans<<endl;
// return ;
// }
// char ch =s[0];
// int code =ch;
// string ros= s.substr(1);
// subseq(ros,ans);
// subseq(ros,ans+ch);
// subseq(ros,ans+to_string(ch));
// }
// int main(){
// subseq("AB","");
// }
//bineary search
// #include<iostream>
// using namespace std;
// int binearysearch(int arr[],int n , int key){
// int s=0;
// int e=n;
// while(s<=e){
// int mid= (s+e)/2;
// if(arr[mid]==key){
// return mid;
// }
// if(arr[mid]>key){
// e=mid-1;
// }else{
// s=mid+1;
// }
// }
// return -1;
// }
// int main(){
// int arr[]={1,2,3,9,0,6,7};
// cout<<binearysearch(arr,7,9);
// }
//selection sort
#include<iostream>
using namespace std;
int main(){
int n;
int arr[n];
cout<<"enter the element in the array";
for(int i =0;i<n;i++){
cin>>arr[i];
}
for(int i =0;i<n-1;i++){
for(int j =i+1;j<n;j++){
if(arr[i]>arr[j]){
int temp = arr[j];
arr[i]=arr[j];
arr[j]=temp;
}
}
}
for(int i =0;i<n;i++){
cout<<arr[i]<<" ";
}
}