-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBasic list
More file actions
456 lines (330 loc) · 8.41 KB
/
Basic list
File metadata and controls
456 lines (330 loc) · 8.41 KB
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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
Prime Number /////////////////////
import java.util.*;
public class test
{
public static void main(String args[])
{
Scanner s = new Scanner(System.in);
boolean flag = false;
System.out.println("Enter the number");
int n = s.nextInt();
for(int i=2;i<=n/2;i++)
{
if(n%i==0)
{
flag=true;
break;
}
}
if(!flag)
System.out.println(" is a prime number ");
else
System.out.println(" not a prime number ");
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
String reverse using two methods
import java.util.Scanner;
class test {
public static void main(String args[]){
Scanner s = new Scanner(System.in);
System.out.println("Enter the string");
String str = s.nextLine();
System.out.println(str);
for(int i =str.length()-1;i>=0;i--)
{
System.out.print(str.charAt(i));
}
System.out.println();
StringBuilder sb = new StringBuilder();
sb.append("golden");
sb.reverse();
System.out.println(sb);
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
reversing the array
import java.util.*;
public class Main
{
public static void main(String[] args) {
int arr[] = new int [] {1,2,3,4,5,6};
int l = arr.length;
System.out.println(l);
for(int a : arr)
{
System.out.print(a);
}
for(int i=0;i<arr.length-1;i++,l--)
{
int temp=arr[i];
arr[i]=arr[l-1];
arr[l-1]=temp;
}
System.out.println("");
for(int a : arr)
{
System.out.print(a);
}
}
}
}
String manupilation methods
String s = first.concat(second);
first.equals(third);
System.out.println(str1.toLowerCase());
System.out.println(str1.toUpperCase());
boolean result = str1.contains("Java");
System.out.println(str1.substring(0, 4));
System.out.println(str1.replace("C++", "Java"));
System.out.println(str1.replace('a', 'z'));
int result = str1.indexOf('s');
System.out.println(str1.trim()); // to remove starting ending whie spaces
System.out.println(str1.substring(1)); // program == rogram
System.out.println(str1.isEmpty());
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Fibonacchi Series program
import java.util.Scanner;
class test {
public static void main(String args[])
{
int n = 10 , first=0,second=1;
System.out.println("Fibbo series is ");
for(int i=0; i<n;i++)
{
System.out.print(first + "," );
int next = first + second;
first = second;
second = next;
}
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Palindrome Number
import java.util.*;
public class Main
{
public static void main(String[] args) {
int rev=0;
Scanner sc = new Scanner(System.in);
int num = sc.nextInt();
System.out.println(num);
while(num!=0)
{
int mod = num%10;
rev=rev*10+ mod;
num=num/10;
}
System.out.println(rev);
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
amstrong number
import java.util.Scanner;
class test {
public static void main(String args[])
{
int n = 143 ;
int orignalno=n;
int sum=0;
while(n!=0)
{
int rem = n%10;
sum=sum+(rem*rem*rem);
n=n/10;
}
if (orignalno==sum)
System.out.println("Given number is amstrong number");
else
System.out.println("Given number is not amstrong number");
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
factorials of two numbers
import java.util.Scanner;
class test {
public static void main(String args[])
{
int num = 5;
int fact = 1;
for(int i=1;i<=num;i++)
{
fact = fact* i;
}
System.out.println(fact);
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Swap two numbers .....
import java.util.Scanner;
class test {
public static void main(String args[])
{
int a = 33;
int b = 44;
a = a+b;
b = a-b;
a = a-b;
System.out.println(a);
System.out.println(b);
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Tower of hanoi
import java.util.Scanner;
class test {
public static void hano( int n , char A , char B, char C)
{
if(n>0)
{
hano(n-1,A,C,B);
System.out.println(A+ " to " + C);
hano(n-1,B,A,C);
}
}
public static void main (String args[])
{
int n = 3;
hano(n,'A','B','C');
}
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
leap year
if(((year % 4 == 0) && (year % 100 != 0)) ||
(year % 400 == 0))
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Greatest of three number
public class Main
{
public static void main (String[]args)
{
int num1 = 10, num2 = 20, num3 = 30;
//comparing num1 with other numbers
if ((num1 >= num2) && (num1 >= num3))
System.out.println (num1 + " is the greatest");
//checking if num2 is greatest
else if (num2 >= num1 && num2 >= num3)
System.out.println (num2 + " is the greatest");
// num3 has to be greatest then if not above
else
System.out.println (num3 + " is the greatest");
}
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void buble(int arr[],int n)
{
for(int i=0;i<n-1;i++)
{
for(int j=0;j<n-1;j++)
{
if(arr[j]>arr[j+1])
{
int temp = arr[j];
arr[j]=arr[j+1];
arr[j+1]=temp;
}
}
}
}
void selection(int arr[], int n)
{
for(int i=0;i<n-1;i++)
{
int min = i;
for(int j=i+1;j<n;j++)
{
if(arr[min]>arr[j])
min=j;
}
int temp=arr[min];
arr[min]=arr[i];
arr[i]=temp;
}
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Binary Search array .........
int binarySearch(int arr[], int l, int r, int x)
{
if (r>=l)
{
int mid = l + (r - l)/2;
if (arr[mid] == x)
return mid;
if (arr[mid] > x)
return binarySearch(arr, l, mid-1, x);
return binarySearch(arr, mid+1, r, x);
}
return -1;
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
largest num in array
static int arr[] = {10, 30124, 45, 90, 9808};
static int largest()
{
int i;
int max = arr[0];
for (i = 1; i < arr.length; i++)
{
if (arr[i] > max)
max = arr[i];
}
return max;
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
class Stack1
{
int max;
int top;
int S1[];
Stack1(int s)
{
top=-1;
max=s;
S1= new int[max];
}
boolean isEmpty()
{
return (top==-1);
}
boolean isFull()
{
return (top>=(max-1));
}
void push(int d)
{
if(top>=(max-1))
System.out.println(" Overflow ");
else
S1[++top]=d;
}
void pop()
{
--top;
}
int peek()
{
return S1[top];
}
void display()
{
for(int i=0;i<=top;i++)
{
System.out.println(S1[i]);
}
}
public static void main(String args[])
{
Stack1 S = new Stack1(5);
System.out.println(S.isEmpty());
S.push(14);
S.push(15);
S.push(16);
S.pop();
S.push(18);
S.push(18);
S.push(126);
System.out.println(S.isEmpty());
S.display();
}
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////