Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (408)
games submitted by our members
Games in WIP (293)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  ArrayList vs. LinkedList  (Read 917 times)
0 Members and 1 Guest are viewing this topic.
Offline weston

Junior Member





« Posted 2004-12-17 05:01:15 »

I'm storing a group of objects that will have methods called on them (update(), render()) every frame inside an ArrayList. What I'm wondering is if it would be faster to use a LinkedList since I will never grab an item from the middle. Everytime I use the data structure I will be doing a complete sequential traversal.

I was originally doing this with a LinkedList, but I ran into problems with concurrent modification while using an iterator to traverse the list. The concurrent modification was because of awt events which were on a seperate thread. I figured I could avoid this by storing all the events in a queue and processing them at the correct time, but I've moved on to lwjgl since then and I don't think it will be a problem.

I'm also thinking of writing my own data structure for doing this so that I can avoid casting from Object, but I'm not sure if I should implement it as a linked structure or an array based structure (only worried about speed really).

I realize this isn't exactly a performance bottleneck but I'm just wondering about it because I'm writing some reusable code that should be as efficient as possible.

for(int i = 1; i > 0; i++)
{
System.out.println(i+" cups of java downed");
}
Offline princec
« League of Dukes »

JGO Kernel


Medals: 196
Projects: 3


Eh? Who? What? ... Me?


« Reply #1 - Posted 2004-12-17 09:22:07 »

LinkedList is generally far more useful than ArrayList is when:
a) The size of the list is unknown and could be large
b) You never need to randomly access elements
c) You frequently iterate through it, and remove or insert elements.

Cas Smiley

Offline CaptainJester

JGO Knight


Medals: 10
Projects: 2


Make it work; make it better.


« Reply #2 - Posted 2004-12-17 11:05:40 »

Access is generally faster for gets in an ArrayList because it is backed by an array.  If your list does not change size during play, I would recommend ArrayList.

Games published by our own members! Check 'em out!
Legends of Yore - The Casual Retro Roguelike
Offline blahblahblahh

JGO Coder


Medals: 1


http://t-machine.org


« Reply #3 - Posted 2004-12-17 11:24:35 »

Quote
Access is generally faster for gets in an ArrayList because it is backed by an array.


The difference in the described case should be insignificant unless, as Cas said, you are doing random access.

malloc will be first against the wall when the revolution comes...
Pages: [1]
  ignore  |  Print  
 
 
You cannot reply to this message, because it is very, very old.

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Try the Free Demo of Revenge of the Titans

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
cubemaster21 (143 views)
2013-05-17 21:29:12

alaslipknot (151 views)
2013-05-16 21:24:48

gouessej (182 views)
2013-05-16 00:53:38

gouessej (175 views)
2013-05-16 00:17:58

theagentd (184 views)
2013-05-15 15:01:13

theagentd (169 views)
2013-05-15 15:00:54

StreetDoggy (214 views)
2013-05-14 15:56:26

kutucuk (239 views)
2013-05-12 17:10:36

kutucuk (237 views)
2013-05-12 15:36:09

UnluckyDevil (242 views)
2013-05-12 05:09:57
Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38

Java Data structures
by Roquen
2013-03-29 13:21:12

Topic Request
by kutucuk
2013-03-22 21:42:01
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!
Page created in 0.088 seconds with 20 queries.