Results 1 to 6 of 6
Thread: array indexes
- 10-29-2009, 02:50 AM #1
Member
- Join Date
- Sep 2009
- Posts
- 10
- Rep Power
- 0
array indexes
I have two arrays, each filled with 1000 objects of my own class.
What I want is a recursive loop that will have the corresponding index values of each array interact in a predefined way.
Example:
Array One: 1, 3, 5, 7, 9
Array Two: 2, 4, 6, 8, 10
The way i want them to interact is Array Two minus Array One, then store that in a variable ('1' has a variable for this). Would I do this with a for loop or a while loop, and how would I do it?
EDIT:
Another question:
How would I achieve something like:
If (array[x] == 0)
do something
where x can be any index, and that code is running all the time?Last edited by Kaito; 10-29-2009 at 02:59 AM.
- 10-29-2009, 07:17 AM #2
Senior Member
- Join Date
- Aug 2009
- Posts
- 2,388
- Rep Power
- 6
Find a tutorial on arrays and read it.
- 10-29-2009, 07:27 AM #3
Member
- Join Date
- Oct 2009
- Posts
- 12
- Rep Power
- 0
- 10-29-2009, 01:28 PM #4
Member
- Join Date
- Sep 2009
- Posts
- 22
- Rep Power
- 0
A do while loop is a good bet.
Also, you'll probably want to use a for loop if you know the size of the array you're iterating on.
- 10-30-2009, 03:01 AM #5
Member
- Join Date
- Sep 2009
- Posts
- 10
- Rep Power
- 0
Alright, new problem statement, which should make more sense:
"At index 0, have some code run that will randomly subtract either 2 or 0 from a counter. When the value at index 0 reaches 0, I want the same bit of code to run for index 1, then index 2, etc, until the last index value has been reached"
Does this make it easier to understand?
- 10-30-2009, 03:14 AM #6
Member
- Join Date
- Sep 2009
- Posts
- 22
- Rep Power
- 0
Yes your new statement makes a lot more sense.
You say you want to go through each index value. You can probably figure out what kind of loop you need to go through each one.
Then, for each of those values, you want to keep going until the value at the index is 0. Again, try to think of what loop you need for that.
Inside that 2nd loop you can do your random subtractions. Try to see if you can do this, it should be a fairly big hint as to how to proceed.
Similar Threads
-
Does Lucene allows to split a document tokens between several indexes?
By zakeri@srrf.net in forum LuceneReplies: 1Last Post: 11-04-2009, 05:58 PM -
Removing Indexes
By gilbertsavier in forum JDBCReplies: 0Last Post: 07-17-2009, 07:23 AM -
Creating Indexes
By gilbertsavier in forum JDBCReplies: 0Last Post: 07-17-2009, 07:23 AM -
How to add an integer to a array element and the store that backinto an array.
By Hannguoi in forum New To JavaReplies: 1Last Post: 03-31-2009, 06:40 AM -
Auto updation of Editable Column Indexes
By Gajesh Tripathi in forum AWT / SwingReplies: 0Last Post: 10-23-2008, 10:23 AM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks