Programming C, C++, Java, PHP, Ruby, Turing, VB
Computer Science Canada 
Programming C, C++, Java, PHP, Ruby, Turing, VB  

Username:   Password: 
 RegisterRegister   
 Dynamic two dimensional Arrays
Index -> Programming, Java -> Java Help
View previous topic Printable versionDownload TopicSubscribe to this topicPrivate MessagesRefresh page View next topic
Author Message
copthesaint




PostPosted: Mon Apr 04, 2011 10:54 am   Post subject: Dynamic two dimensional Arrays

So I know what increasing the bound of a dynamic array, you want to create a temperary array with the larger bound and copy the previous array to it. eg.

Java:
int boundSize = 1;
         int[] oldArray = new int [boundSize];
         oldArray [boundSize-1] = 0;
         boundSize = boundSize+ 1;
         int[] newArray= new int[boundSize];
         System.arraycopy(oldArray, 0, newArray, 0, oldArray.length);
         oldArray= newArray;
         oldArray [boundSize-1] = 1;
         for (int i = 0; i < oldArray.length; i++){
            System.out.println (oldArray [i]);
         }


However I am just wondering how I would go about doing this with a [][] dimensional array.
Sponsor
Sponsor
Sponsor
sponsor
Tony




PostPosted: Mon Apr 04, 2011 11:54 am   Post subject: RE:Dynamic two dimensional Arrays

Mostly in the same way. If you have int[][] arr; wouldn't arr[x] return an int[] type?

Also, the typical strategy for resizing arrays is to double their length (instead of doing +1), but that choice depends on the behaviour of your program.
Latest from compsci.ca/blog: Tony's programming blog. DWITE - a programming contest.
copthesaint




PostPosted: Mon Apr 04, 2011 4:03 pm   Post subject: RE:Dynamic two dimensional Arrays

Yep, I realized like 10 min after, when I ate something, That arr[x] would return an array... I kinda just face-palmed myself.. anyways thanks Razz
Display posts from previous:   
   Index -> Programming, Java -> Java Help
View previous topic Tell A FriendPrintable versionDownload TopicSubscribe to this topicPrivate MessagesRefresh page View next topic

Page 1 of 1  [ 3 Posts ]
Jump to:   


Style:  
Search: