Skip to content

Commit 0ff0cc4

Browse files
authored
Merge branch 'master' into master
2 parents ac67404 + 35751fe commit 0ff0cc4

5 files changed

+64
-33
lines changed

InsertionSort.java

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
// Java program for implementation of Insertion Sort
2+
class InsertionSort{
3+
void sort(int arr[]){
4+
int n = arr.length;
5+
for (int i=1; i<n; ++i){
6+
int key = arr[i];
7+
int j = i-1;
8+
9+
while (j>=0 && arr[j] > key){
10+
arr[j+1] = arr[j];
11+
j = j-1;
12+
}
13+
arr[j+1] = key;
14+
}
15+
}
16+
17+
static void printArray(int arr[]){
18+
int n = arr.length;
19+
for (int i=0; i<n; ++i)
20+
System.out.print(arr[i] + " ");
21+
22+
System.out.println();
23+
}
24+
25+
public static void main(String args[]){
26+
int arr[] = {12, 11, 13, 5, 6};
27+
28+
InsertionSort ob = new InsertionSort();
29+
ob.sort(arr);
30+
31+
printArray(arr);
32+
}
33+
}

JavaDateAndTime.java

+10
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,19 @@ public class JavaDateAndTime {
2020
public static String getDay(String day, String month, String year) {
2121

2222
int y = Integer.parseInt(year);
23+
/**
24+
* Converts the String type year into integer type y using parseInt() method)
25+
*/
26+
2327
int m = Integer.parseInt(month);
28+
/**
29+
* Converts the String type month into integer type y using parseInt() method)
30+
*/
2431
int d = Integer.parseInt(day);
2532

33+
/**
34+
* Converts the String type day into integer type y using parseInt() method)
35+
*/
2636
Calendar c = Calendar.getInstance();
2737
c.set(y, m - 1, d);
2838

Palindrome_or_not.java

+17-31
Original file line numberDiff line numberDiff line change
@@ -3,37 +3,23 @@
33
/*
44
Write a program to check the given number is palindrome or not?
55
Descritpion : A Palindrome number is a number that remains the same when its digits are reversed. Like 16461, for example: we take 121 and reverse it, after revers it is same as original number
6-
*/
6+
*/
77
import java.util.Scanner;
88

9-
class P {
10-
11-
public static void main(String args[]) {
12-
int n, x, i, number;
13-
14-
boolean f = true;
15-
16-
Scanner sc = new Scanner(System.in);
17-
18-
number = sc.nextInt();
19-
20-
String str = Integer.toString(number);
21-
22-
String strArr[] = str.split("");
23-
24-
x = str.length();
25-
n = x / 2;
26-
for (i = 0; i < n; i++) {
27-
if (strArr[i].compareTo(strArr[--x]) != 0) {
28-
f = false;
29-
break;
30-
}
31-
}
32-
33-
if (f == true) {
34-
System.out.print(str + " is palindrome ");
35-
} else {
36-
System.out.print(str + " is not a palindrome");
37-
}
38-
}
9+
class Palindrome_or_not
10+
{
11+
public static void main(Sting args[])
12+
{
13+
Scanner x = new Scanner(System.in);
14+
15+
String st=x.next();
16+
String w="";
17+
int i;
18+
for(i=0;i<st.length();i++)
19+
w=st.charAt(i)+w;
20+
if(st.compareTo(w)==0)
21+
System.out.prinltn("Number is Pallindrome");
22+
else
23+
System.out.println("Number is Not Pallindrome");
24+
}
3925
}

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
# Java-Codes
22
classroom programs of java.
3+
Contains many codes for the sole purpose of encouraging open source development

Root.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
/* This program is to find value of root node in a tree
22
when value of each node and sum of child nodes of all nodes is given. */
3-
package javacodes;
43

5-
import java.util.*; //import packages
4+
package javacodes; //encapsulates a group of classes into a package called javacodes
5+
6+
import java.util.*; //import package of util class
67

78
public class Root {
89

0 commit comments

Comments
 (0)