Tagged Questions
Resizable-array implementation of the List interface.
172
votes
5answers
98k views
How to create ArrayList (ArrayList<T>) from array (T[]) in Java
I have an array that is initialised like:
Element[] array = {new Element(1),new Element(2),new Element(3)};
I would like to convert this array into an object of the ArrayList class.
...
167
votes
18answers
73k views
When to use LinkedList<> over ArrayList<>?
I've always been one to simply use List<String> names = new ArrayList<String>();
I use the interface as the type name for portability, so that when I ask questions such as these I can ...
70
votes
8answers
72k views
Initialization of an ArrayList in one line
I am willing to create a list of options to test something.
I was doing:
ArrayList<String> places = new ArrayList<String>();
places.add("Buenos Aires");
places.add("Córdoba");
...
57
votes
10answers
22k views
Randomize a List<T> in C#
What is the best way to randomize the order of a generic list in C#? I've got a finite set of 75 numbers in a list I would like to assign a random order to, in order to draw them for a lottery type ...
30
votes
5answers
865 views
Why does Java's ArrayList's remove function seem to cost so little?
I have a function which manipulates a very large list, exceeding about 250,000 items. For the majority of those items, it simply replaces the item at position x. However, for about 5% of them, it must ...
22
votes
2answers
24k views
deep copy NSMutableArray in Objective-C?
Is there any built-in function in Objective-C allows me to deep copy a NSMutableArray?
I looked around, some people say [aMutableArray copyWithZone:nil] works as deep copy. But I tried it seems no.
...
20
votes
3answers
976 views
Why isn't ArrayList marked [Obsolete]?
After a deep thought and looking into the implementation of ArrayList, personally I really want to say It's obsolete, I have no reason to use this class after 2.0. But since it's not marked as ...
20
votes
10answers
36k views
How do I remove repeated elements from ArrayList?
I have an ArrayList of Strings, and I want to remove repeated strings from it. How can I do this?
19
votes
6answers
2k views
Why collections classes in C# (like ArrayList) inherit from multiple interfaces if one of these interfaces inherits from the remaining?
When I press f12 on the ArrayList keyword to go to metadata generated from vs2008, I found that the generated class declaration as follows
public class ArrayList : IList, ICollection, IEnumerable, ...
18
votes
13answers
43k views
Best way to convert an ArrayList to a string
I have an ArrayList that I want to output completely as a String. Essentially I want to output it in order using the toString of each element separated by tabs. Is there any fast way to do this? You ...
17
votes
7answers
29k views
Java: Detect duplicates in ArrayList?
How could I go about detecting (returning true/false) whether an ArrayList contains more than one of the same element in Java?
Many thanks,
Terry
Edit
Forgot to mention that I am not looking to ...
15
votes
6answers
550 views
What's Wrong with an ArrayList?
Recently I asked a question on SO that had mentioned the possible use of an c# ArrayList for a solution. A comment was made that using an arraylist is bad. I would like to more about this. I have ...
15
votes
9answers
6k views
When to use ArrayList over array[] in c#?
I often use an ArrayList instead of a 'normal' array[].
I feel as if I am cheating (or being lazy) when I use an ArrayList, when is it okay to use an ArrayList over an array?
14
votes
3answers
999 views
What are the differences between ArrayList and Vector?
What are the differences between these two data structures and where should you use each of them?
14
votes
3answers
8k views
In .Net, how do you convert an ArrayList to a strongly typed generic list without using a foreach?
See the code sample below. I need the ArrayList to be a generic List.
ArrayList arrayList = GetArrayListOfInts();
List<int> intList = new List<int>();
//Can this foreach be ...
13
votes
8answers
1k views
13
votes
9answers
946 views
Benefits of arrays
As I see it, the advantages of a list over an array are pretty obvious:
Generics provide more precise typing: List<Integer>, List<? extends Number>, List<? super Integer>.
A List ...
13
votes
6answers
10k views
Java ArrayList initialization
I am aware that you can initialize an array during instantiation as follows:
String[] names = new String[] {"Ryan", "Julie", "Bob"};
Is there a way to do the same thing with an ArrayList? Or must I ...
13
votes
5answers
4k views
A colleague said don't use java.util.Vector anymore - why not?
Previously I would always have thought a Vector was good to use for non-descript objects when length was unknown. As far as I was aware I thought it was thread-safe too
What would change that it ...
13
votes
8answers
6k views
c# When should I use List and when should I use arraylist?
As the title says when should I use List and when should I use ArrayList?
Thanks
13
votes
8answers
20k views
How to convert an ArrayList containing Integers to primitive int array?
I'm trying to convert an ArrayList containing Integer objects to primitive int[] with the following piece of code, but it is throwing compile time error. Is it possible to convert in Java?
...
12
votes
7answers
4k views
Sorting an ArrayList of Contacts
Ok so I have a been making an addressbook application and have pretty much finished all the key features but I am looking to implement a sort feature in the program.
I want to sort an Arraylist which ...
12
votes
11answers
22k views
Deleting objects from an ArrayList in Java
I have a big doubt and I hope someone can help me out. I need to delete some objects from an arraylist if they meet a condition and I'm wondering which way could be more efficient.
Here's the ...
11
votes
2answers
308 views
Remembering where a mouse clicked? ArrayLists? HashCodes?
Sorry guys, I deleted my APPLES and CATS example :) Here's the updated version of my question!
I'm losing my sanity here. I need someone who can enlighten me. I've tried a couple of times explaining ...
11
votes
6answers
938 views
ArrayList and Multithreading in Java
Under what circumstances would an unsynchronized collection, say an ArrayList, cause a problem? I can't think of any, can someone please give me an example where an ArrayList causes a problem and a ...
11
votes
6answers
2k views
Java lists — does LinkedList really perform so poorly vs ArrayList and TreeList?
Taken from Apache TreeList doc:
The following relative performance statistics are indicative of this class:
get add insert iterate remove
TreeList 3 5 1 2 ...
11
votes
12answers
13k views
Memory overhead of Java HashMap compared to ArrayList
I am wondering what is the memory overhead of java HashMap compared to ArrayList?
Update:
I would like to improve the speed for searching for specific values of a big pack (6 Millions+) of identical ...
11
votes
5answers
10k views
When to use a linked list over an array/array list?
I use a lot of lists and arrays but I have yet to come across a scenario in which the array list couldn't be used just as easily as, if not easier than, the linked list. I was hoping someone could ...
11
votes
10answers
22k views
How do I find out what type each object is in a ArrayList<Object>?
I have a ArrayList made up of different elements imported from a db, made up of strings, numbers, doubles and ints. Is there a way to use a reflection type technique to find out what each type of data ...
10
votes
2answers
6k views
ArrayList<String> to CharSequence[]
What would be the easiest way to make a CharSequence[] out of ArrayList<String>?
Sure I could iterate through every ArrayList item and copy to CharSequence array, but maybe there is ...
10
votes
1answer
2k views
Why is Java's AbstractList's removeRange() method protected?
Does anyone have any idea, why removeRange method in AbstractList (and also in ArrayList) is protected? It looks like a quite well-defined and useful operation, but still, to use it, we're forced to ...
10
votes
8answers
1k views
How can I group an array of rectangles into “Islands” of connected regions?
The problem
I have an array of java.awt.Rectangles. For those who are not familiar with this class, the important piece of information is that they provide an .intersects(Rectangle b) function.
I ...
10
votes
8answers
4k views
traditional for loop vs Iterator in Java
Is there any performance testing results available in comparing traditional for loop vs Iterator while traversing a ArrayList,HashMap and other collections?
Or simply why should I use Iterator over ...
10
votes
4answers
27k views
How to get the last value of Arraylist
How can I get the last value of arrayList (e.g. I dont know the last index of the ArrayList)?
Thanks.
10
votes
11answers
12k views
How to count occurrence of an element in a List
I have an ArrayList a collection class of java as follows.
ArrayList<String>animals = new ArrayList<String>();
animals.add("bat");
animals.add("owl");
animals.add("bat");
...
9
votes
4answers
143 views
How can I shuffle a specific range of an ArrayList?
In Java, I know that to shuffle an ArrayList, the method Collections.shuffle() exists, however this shuffles the entire list.
How can I write a method (or, can someone write it and show me it?) such ...
9
votes
4answers
2k views
How can i convert ArrayList<Object> to ArrayList<String>?
ArrayList<Object> list = new ArrayList<Object>();
list.add(1);
list.add("Java");
list.add(3.14);
System.out.println(list.toString());
I tried:
ArrayList<String> list2 = ...
9
votes
4answers
476 views
ArrayList BinarySearch
I'm busy preparing for the MCTS 70-536 exam, according to the exam book (Microsoft Press - .NET Framework - Application Development Foundation Self Paced Training Kit 2nd Edition), this code sample:
...
9
votes
12answers
20k views
Most efficient way to see if an ArrayList contains an object in Java
I have an ArrayList of objects in Java. The objects have four fields, two of which I'd use to consider the object equal to another. I'm looking for the most efficient way, given those two fields, to ...
8
votes
3answers
119 views
Java: sorting an ArrayList in place
In Java's standard library, is there a method that would allow one to sort an ArrayList in place, i.e. using O(1) extra storage?
Collections.sort(List<T>) does not fulfil this requirement since ...
8
votes
2answers
328 views
Java “ConcurrentModificationException” runtime error when iterating .next()
According to the runtime error message the Exception occurs in the following line;
VirusData v = iteratorVirusDB.next();
VirusData is a class with a constructor and an overloaded constructor ...
8
votes
6answers
519 views
Why ArrayList grows at a rate of 1.5, but for Hashmap it's 2?
As per Sun Java Implementation, during expansion, ArrayList grows to 3/2 it's initial capacity whereas for HashMap the expansion rate is double. What is reason behind this?
As per the implementation, ...
8
votes
6answers
576 views
how do i create multidimensional array list in c#?
Is it possible to create a multidimensional arraylist in C#?
StartDate Qty size
9/1/2010 10 15
9/1/2009 12 17
9/1/2008 11 19
StartDate , Qty and size are the 3 arraylists. ...
8
votes
1answer
2k views
arraylist vs List<> in c#
what is the difference between arraylist and List<> in c#?
is it only that List<> have a type while ArrayList don't?
8
votes
4answers
7k views
Efficiently filter an ArrayList in Java/Android
I'm developing an Android app (Android 1.6), but this is probably a more general Java question.
I have an ArrayList of about 10,000 objects
the objects contain 3 strings (firstName, middleName, ...
8
votes
7answers
776 views
Why is vector array doubled?
Why does the classic implementation of Vector (ArrayList for Java people) double its internal array size on each expansion instead of tripling or quadrupling it?
8
votes
8answers
9k views
Arrays.asList() of an array
What is wrong with this conversion?
public int getTheNumber(int[] factors) {
ArrayList<Integer> f = new ArrayList(Arrays.asList(factors));
Collections.sort(f);
return ...
8
votes
16answers
2k views
Sort ArrayList
Here is a simple sorting program of an ArrayList:
ArrayList<String> list = new ArrayList<String>();
list.add("1_Update");
list.add("11_Add");
list.add("12_Delete");
list.add("2_Create");
...
8
votes
6answers
3k views
ArrayList vs List<object>
I saw this reply from Jon on Initialize generic object with unknown type
If you want a single collection to
contain multiple unrelated types of
values, however, you will have to use
...
8
votes
9answers
17k views
How to backup ArrayList in Java?
I have some data stored as ArrayList. And when I want to backup this data,java bounds two objects forever. Which means when I change values in data ArrayList this changes come to backup. I tried to ...