DevX Home    Today's Headlines   Articles Archive   Tip Bank   Forums   

+ Reply to Thread
Results 1 to 2 of 2
  1. #1
    Join Date
    Nov 2005
    Posts
    1

    Java Array listing

    hi, im a first year computer scientist and im trying to make a java program to solve the 8-puzzle problem. i think i can make everything work except i'm getting confused about array.

    everytime i expand a state in the puzzle it produces 2,3 or 4 new states these are all in arrays. i need to make a list of these arrays somehow, so that i can add these new arrays to te top of the list or te bottom, and so its possible to sort the list. i've been wading through websites lookign for a solution but everythign is call abit to general as ive only had 7 weeks of java experience, and havent been told exactly wat an object or a class is yet.

    Any help would be appreciated

    Thanks

  2. #2
    Join Date
    Aug 2003
    Posts
    313
    If your trying to sort things, try using a TreeSet or other SortedSet interface. You should be able to add stuff like this:
    Code:
    TreeSet<State> set = new TreeSet<State>();
    
    State[] states;
    
    // Code here to get states
    
    set.add(new State());
    set.addAll(Arrays.asList(states));
    Hope this helps.
    ~evlich

Similar Threads

  1. Replies: 2
    Last Post: 06-14-2006, 03:16 PM
  2. Java vs. .Net. A questionnaire
    By Basil in forum .NET
    Replies: 1
    Last Post: 05-13-2005, 06:46 AM
  3. DevX does seem one sideded
    By Rob Abbe in forum Talk to the Editors
    Replies: 44
    Last Post: 01-13-2003, 02:57 PM
  4. learning c# very confusing.
    By Mike Tsakiris in forum .NET
    Replies: 11
    Last Post: 10-04-2002, 05:32 PM
  5. Re: VB vs. Visual Age for Java
    By JJ in forum Enterprise
    Replies: 1
    Last Post: 07-06-2000, 04:50 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
HTML5 Development Center
 
 
FAQ
Latest Articles
Java
.NET
XML
Database
Enterprise
Questions? Contact us.
C++
Web Development
Wireless
Latest Tips
Open Source


Top DevX Stories

Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL


Sponsored Links