Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 2 of 2

Thread: ascending order array

  1. #1
    Junior Member
    Join Date
    Apr 2013
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default ascending order array

        int [] data = new int[100];
        for(int i=0; i<data.length; i++)
        data[i]= (int) (Math.random() *10000);

    how would you assort this array in ascending order?


  2. #2
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,042
    Thanks
    63
    Thanked 2,708 Times in 2,658 Posts

    Default Re: ascending order array

    There are several simple sorts you could use: bubble or insertion for example.
    Ask google for the algorithms.
    If you don't understand my answer, don't ignore it, ask a question.

Similar Threads

  1. Replies: 1
    Last Post: September 26th, 2012, 12:31 PM
  2. organizing linkedlist in ascending order
    By mia_tech in forum What's Wrong With My Code?
    Replies: 7
    Last Post: June 9th, 2012, 06:44 AM
  3. Replies: 3
    Last Post: October 22nd, 2011, 01:53 AM
  4. Replies: 3
    Last Post: June 1st, 2011, 12:47 AM
  5. Replies: 4
    Last Post: November 14th, 2010, 11:44 AM