shinchan
array sort
1 Answer(s)      3 years and 11 months ago
Posted in : Java Beginners

View Answers

July 27, 2009 at 1:04 PM


Hi Friend,

Try the following code:

public class SortArrayWithoutUsingMethod{
public static void sortArray(int array[], int len){
for (int i = 1; i < len; i++){
int j = i;
int tmp = array[i];
while ((j > 0) && (array[j-1] > tmp)){
array[j] = array[j-1];
j--;
}
array[j] = tmp;
}
}
public static void main(String a[]){
int i;
int array[]={7,2,9,6,4,8,3,1};
sortArray(array, array.length);
System.out.println("Sorted Array is: ");
for(i = 0; i <array.length; i++){
System.out.println(array[i]);
}
}

}

Thanks









Related Pages:
Array sort
Array sort  Program that uses a function to sort an array of integers
php array sort by field
php array sort by field  Array sort by field in PHP
php array sort by key
php array sort by key  php script to sort array by key
php array sort by value
php array sort by value  an example to sort the array by value
php array sort functions
php array sort functions  Sort function in php
string array sort
string array sort  Hi. How to sort a string array
string array sort
string array sort  Hi. How to sort a string array
string array sort
string array sort  Hi. How to sort a string array
string array sort
string array sort  Hi. How to sort a string array
string array sort
string array sort  Hi. How to sort a string array
array sort - Java Beginners
array sort  hi all, can anybody tell me how to sort an array... array[], int len){ for (int i = 1; i < len; i++){ int j = i; int tmp = array[i]; while ((j > 0) && (array[j-1] > tmp
php array sort
PHP Array sort function is used to sort the given array in ascending order. Example of PHP Array Sort <?php $ar1=array("jack","mac","rock...;"; $ar1=array("a"=>"jack","m"=>"mac","r"=>"rock","b"=>"barak"); sort
String array sort
String array sort  Hi here is my code. If i run this code I am getting exception as java.lang.NllPointerException. I think its because of at the line... for loop is to remove the null from the source array*/ for(int i=0;i<
String array sort
String array sort  Hi here is my code. If i run this code I am getting exception as java.lang.NllPointerException. I think its because of at the line... for loop is to remove the null from the source array*/ for(int i=0;i<
PHP Array Sort in Reverse Order
PHP Array Sort in Reverse Order  Hi, I have just started learning... the PHP Array Sort in Reverse Order. Please suggest any online reference or example... programming language there are three types of functions used to sort the array
Merge Sort String Array in Java
Merge Sort String Array in Java  Hello, I am trying to implement a merge sort algorithm that sorts an array of Strings. I have seen numerous.... Note: I have a separate class for merge sort in which i pass my list and the size
JavaScript array sort alphabetically
JavaScript array sort alphabetically       We can sort the JavaScript array elements by using the sort() method of Array class in JavaScript. Syntax of the sort method
Java insertion sort with string array
Java insertion sort with string array In this tutorial, you will learn how to sort array of strings using string array with Insertion Sort. For this, we... array using inserting sort algorithm. In the main method, we have  invoked
quick sort
the sort:\n"); for(i = 0; i < array.length; i++){ array[i... answer "array based problem" for run time input.but i am facing some problem.plz... static void quick_srt(int array[],int low, int n){ int lo = low; int hi
quick sort
the sort:\n"); for(i = 0; i < array.length; i++){ array[i... answer "array based problem" for run time input.but i am facing some problem.plz... static void quick_srt(int array[],int low, int n){ int lo = low; int hi
quick sort
the sort:\n"); for(i = 0; i < array.length; i++){ array[i... answer "array based problem" for run time input.but i am facing some problem.plz... static void quick_srt(int array[],int low, int n){ int lo = low; int hi
C array sort example
C array sort example       In this section, you will learn how to sort an array in C. For sorting... the implementation of quicksort algorithm to sort the elements of an array. Syntax
JavaScript array sort numerically
JavaScript array sort numerically   ... alphabetically we have used the default sort method to sort array elements but here...; <head> <title> JavaScript array sort() numerically <
PHP Sort Array
PHP Sort Array: Sometimes we need to store data in a single entity called... array, how to sort values of an array, and how to sort the keys... to use array in PHP. PHP Sort Array Example: <?php $array=array("
JavaScript array functions sort
JavaScript array functions sort   ... to understand the concept of JavaScript array function sort. The code create... to array. The function show( )  include array. sort( ) method. array. sort
Insertion Sort In Java
Insertion Sort In Java      ... to sort integer values of an array using insertion sort. Insertion sorting algorithm is similar to bubble sort. But insertion sort is more 
Selection Sort In Java
same steps. Working of the selection sort :Say we have an array... Selection Sort In Java      ... are going to sort the values of an array  using selection sort.In selection sorting
Heap Sort in Java
Heap Sort in Java is used to sort integer values of an array. Like quicksort... are replaced into array. Steps in heap sort: The Root node is replaced... Heap Sort\n---------------\n"); System.out.println("\n Unsorted Array\n\n
Merge Sort In Java
are followed by merge sort algorithm to sort the values of an array. Step1:Spliting.... Steps of Merge Sort: Say unsorted  an array values... Values after the sort: 1 3 4 9 10 12 99 120 PAUSE C:\array
Quick Sort In Java
: In quick sort algorithm pick an element from array... Quick Sort in Java      ... to sort integer values of an array using quick sort. Quick sort algorithm
Selection Sort in Java
Selection sort in Java is used to sort the unsorted values in an array. In selection sorting algorithm, the minimum value in an array is swapped to the very first position in that array. In the next step the first value of array
Merge Sort Java
Merge Sort in Java is used to sort integer values of an array. There are many methods to sort Java like bubble sort, insertion sort, selection sort, etc. In Merge sort unsorted values are divided into two equal parts
Java: Example - String sort
() // Sort a String array using selection sort. void sort(String...Java: Example - String sort Sorting is a mechanism in which we sort the data in some order. There are so many sorting algorithm are present to sort
Quick Sort in Java
Quick sort in Java is used to sort integer values of an array... into a sorted array. Example of Quick Sort in Java: public class QuickSort... QuickSort.java C:\array\sorting>java QuickSort RoseIndia Quick Sort
bubble sort - Java Beginners
bubble sort  how to write program The bubble-sort algorithm in double...  Hi friend, Bubble Sort program : public class BubbleSortExam{ public static void main(String a[]){ int i; int array
Help With Costructing Selection sort?
Help With Costructing Selection sort?  Using a selection sort, for each entry in the array, display the original index of the first dimension... separated by : (colon) sorted by the first dimension. I got the two dimensional array
Bidirectional Bubble Sort in Java
-directional bubble sort algorithm to sort the values of an array.  ... Bidirectional Bubble Sort in Java       Introduction : Bidirectional Bubble Sort
Java insertion sort question
Java insertion sort question  I've got another program that I need help with. I am trying to write a Java method that accepts an array of strings, and sorts the strings using the insertion sort algorithm. Then I need to write
Insertion Sort - Java Beginners
: public class InsertionSort { public static void sort(String[] array) { int...) { String[] array ={"S","D", "A","B","Z", "M","O", "L","H", "Y"}; sort...", "M","O", "L","H", "Y"}; sort(array, array.length); System.out.println("Data
heap sort in java
("\n Heap Sort\n---------------\n"); System.out.println("\n Unsorted Array\n\n...heap sort in java  plz modify this program so that it can take input as integers and string both..... public class heap_Sort{ public static void
Selection Sort
Java NotesSelection Sort NOTE: You should never really write your own sort. Use the java.util.Arrays.sort(...) or java.util.Collections.sort(...). Like all simple sorts, selection sort is implemented with two
Odd Even Transposition Sort In Java
Odd Even Transposition Sort In Java   ... In this example we are going to sort integer values of an array using odd even transposition sort. Odd even transposition sort is a parallel sorting algorithm. Odd Even
Extra Storage Merge Sort in Java
into an array .Then again merge the next part , sort it and store into an array. Do... sort the sorted values are stored in an other array. Working of extra storage merge sort algorithm: Say we have an array unsorted 
please please i wanna insertion sort program find calendar to array value (1000,5000,10000), please help me
Insertion sort program find calendar to array value 1000,5000,10000  program find calendar for insertion sort in jfram to array 1000
sort table by dropbox entry
sort table by dropbox entry  Hi All, I current have the following..._name"); $options=""; while ($row=mysql_fetch_array($result1...;/tr> <!--END: filter --> <?php while($rows=mysql_fetch_array
Sort
Sort  program to sort a list of numbers in decendimg order   Hi Friend, Try the following code: import java.util.*; class SortListInDescendingOrder{ public static void main(String[] args
JavaScript sort table
JavaScript sort table..., we are going to sort the table using the JavaScript. To sort the table, we... sortTable() and populates the array 'columns' with the contents of selected column
JavaScript sort list
sort() sorts the array. Then in order to update the node values of list element we... JavaScript sort list..., we are going to sort the html list using JavaScript. You can see in the given
Need help in constructing bubble sort
array figured out just couldnt dont know how to plug in the bubble sort...Need help in constructing bubble sort  using a bubble sort, for each entry in the array, display the original index of the first dimension