Perannagari
Collection of the best stuff
Showing posts with label
Programs
.
Show all posts
Showing posts with label
Programs
.
Show all posts
Sunday, 31 July 2016
HEAP SORT JAVA
›
import java.util.Scanner; // Java program for implementation of Heap Sort public class HeapSort { public void sort(int arr[]) { ...
SHELL SORT JAVA
›
import java.util.Arrays; import java.util.Scanner; public class ShellSort { public static void Sort( int arr[] ) { int inner, ...
MERGE SORT IN JAVA
›
import java.io.*; import java.util.Arrays; import java.util.Scanner; public class MergeSort { public static void main(String[] ar...
QUICK SORT IN JAVA
›
import java.util.Arrays; public class QuickSort { public static void main(String[] args) { int[] x = { 9, 2, 4, 7, 3, 7, 10 }; S...
›
Home
View web version