Is an ArrayList or a LinkedList better for sorting?

后端 未结 5 1122
情深已故
情深已故 2020-12-10 11:13

I want to use data structure that needs to be sorted every now and again. The size of the data structure will hardly exceed 1000 items.

Which one is better - A

5条回答
  •  暖寄归人
    2020-12-10 11:31

    If you can use the Apache library, then have a look at TreeList. It addresses your problem correctly.

提交回复
热议问题