insertionSort

insertionSort

View Answers

December 9, 2008 at 11:38 PM

Hi friend,

Code to solve the problem :

import java.util.Arrays;
public class IntSortExample {

public static void main(String[] args) {

String[] names = {"Zoe", "Alison", "David"};
Arrays.sort(names);
System.out.println(Arrays.toString(names));


int[] lengths = {1, 4, 9,7, 2};
Arrays.sort(lengths);
System.out.println(Arrays.toString(lengths));
}
}

For more information on Java Array visit to :

http://www.roseindia.net/java/beginners/arrayexamples/index.shtml

Thanks









Related Tutorials/Questions & Answers:
insertionSort - Java Beginners
Create Array ??
??. For example, insert, linearSearch, binarySearch, insertionSort, heapSort, â?¦ . -Create...??. For example, insert, linearSearch, binarySearch, insertionSort, heapSort, â
Advertisements
complete this code (insertion sort) - Java Beginners
import java.util.Scanner; public class InsertionSort { public... = insertionSort(input); // 4. Print out the results System.out.print... [] insertionSort(int[] unsorted) { int [] sorted = new int
complete the program - Java Beginners
. import java.util.Scanner; public class InsertionSort { public static void...(numbers[i]); // 3. Sort the array int [] sorted = insertionSort... [] insertionSort(int[] unsorted) { int [] sorted = new int [unsorted.length
Question in Array Implementation (java) ??!
Question in Array Implementation (java) ??!  Good Morning EveryOne I have Q in Java - and if any One have the Answers please tall me ??!! Question...??. For example, insert, linearSearch, binarySearch, insertionSort, heapSort, â
Question in Create Arraylist ?
Question in Create Arraylist ?  Good Morning EveryOne I have Q in Java - and if any One have the Answers please tall me ??!! Question...¢??. For example, insert, linearSearch, binarySearch, insertionSort, heapSort, â?Â
Insertion Sort In Java
of the program : public class InsertionSort... InsertionSort.java C:\array\sorting>java InsertionSort
Sorting String arrays in java - Java Beginners
Sorting String arrays in java  I have to make an interface that creates an array of unknown size, resizes the array when needed, and sorts the array three ways: SelectionSort, BubbleSort, InsertionSort. I have not compiled or run
Insertion Sort - Java Beginners
: public class InsertionSort { public static void sort(String[] array) { int
Insertion Sort Java
of Insertion Sort in Java:ADS_TO_REPLACE_2 public class InsertionSort { public static

Ads