Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Multidimensional Arraylist

Status
Not open for further replies.

AccordingToDale

Programmer
Jul 11, 2005
128
CA
Is it possible to create a multi-dimensional arraylist (not an array)?

Dale
 
I'm doing something like that now. Placing my values into a structure and sticking that in the arraylist.

But I thought maybe there was a cleaner way.

Dale

ps. Are all programmers anal?
 
there's a thot. one tends to get stuck in rut when headlong into some process.

Dale
 
try the scientific aproach and try making a class and then a collectionclass (stronglytyped) and then a collectionclass of that collectionclass I think it would be a easier to understand.

Christiaan Baes
Belgium

If you want to get an answer read this FAQ faq796-2540
There's no such thing as a winnable war - Sting
 
If you want to use a multidimensional arraylist to store values of coordinates for example, you can convert the coordinates to absolute values and use an arraylist still. For example, (4,5) would translate to 5 * TotalNumberOfColumns + 4

If the total number of columns is 6, this would result in 34.

This way every coordinate is unique, assuming you use (0,0) for the upperleft corner. Translating it back into coordinates:

x = AbsoluteValue Mod TotalNumberOfColumns (34 mod 6 = 4)
y = Int(AbsoluteValue / TotalNumberOfColumns) (the integer part of (34 / 6 = 5.666666666) is 5)

I hope that may be useful.

Regards, Ruffnekk
---
Is it my imagination or do buffalo wings taste just like chicken?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top