Collections API's provide developers with a set of classes and interfaces that makes it easier to handle collections of objects.
165
votes
18answers
72k 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 ...
149
votes
8answers
77k views
Python: What is the best way to check if a list is empty?
For example, if passed the following:
a = []
How do I check to see if a is empty?
145
votes
31answers
164k views
How to sort a Map<Key, Value> on the values in Java?
I am relatively new to Java, and often find that I need to sort a Map on the values. Since the values are not unique, I find myself converting the keySet into an array, and sorting that array through ...
97
votes
14answers
78k views
How to Initialise a static Map in Java
How would you initialise a static Map in Java?
Method one: Static initializer
Method two: instance initialiser (anonymous subclass)
or
some other method?
What are the pros and cons of each?
Here ...
94
votes
8answers
51k views
C# Set collection?
Does anyone know if there is a good equivelent to Java's Set collection in C#.
It's one of the few things I miss from having moved to C#.
I am aware that you can have a "pretend" set using a ...
74
votes
12answers
42k views
Java: What is the best way to filter a Collection?
I want to filter a java.util.Collection based on a predicate.
72
votes
15answers
6k views
is it better to return null or empty collection
that's kind off a general question (but I'm using C#), what's the best way (best practice), do you return null or empty collection for a method that has a collection as a return type ?
67
votes
4answers
8k views
Apache Commons vs. Google Collections
I was looking for a bidirectional map implementation in Java, and stumbled upon these two libraries:
Apache Commons Collections
Google Collections
Both are free, have the bidirectional map ...
58
votes
4answers
21k views
Java: Efficient Equivalent to Removing while Iterating a Collection
We all know you can't do this:
for (Object i : l)
if (condition(i)) l.remove(i);
ConcurrentModificationException etc... this apparently works sometimes, but not always. Here's some specific ...
57
votes
9answers
15k views
Creating a blocking Queue<T> in .NET?
I have a scenario where I have multiple threads adding to a queue and multiple threads reading from the same queue. If the queue reaches a specific size all threads that are filling the queue will be ...
55
votes
7answers
4k views
What are the reasons why Map.get(Object key) is not (fully) generic
What are the reasons behind the decision to not have a fully generic get method
in the interface of java.util.Map<K,V>.
To clarify the question, the signature of the method is
V get(Object ...
53
votes
4answers
35k views
.NET HashTable Vs Dictionary - Can the Dictionary be as fast?
I am trying to figure out when and why to use a Dictionary or a HashTable. I have done a bit of a search on here and have found people talking about the generic advantages of the Dictionary which I ...
49
votes
7answers
32k views
sorted collection in java
I'm a beginner in Java. Please suggest which collection(s) can/should be used for maintaining a sorted list in Java. I have tried Map and Set but they weren't what I was looking for.
48
votes
3answers
22k views
Linq .Any VS .Exists - Whats the difference?
Using Linq on collections, what is the difference between the following lines of code?
if(!coll.Any(i => i.Value))
and
if(!coll.Exists(i => i.Value))
Update 1
When I disassemble .Exists ...
46
votes
13answers
32k views
Why doesn't java.util.Set have get(int index)?
I'm sure there's a good reason, but could someone please explain why the java.util.Set interface lacks get(int Index), or any similar get() method?
It seems that sets are great for putting things ...
45
votes
10answers
2k views
Is an “infinite” iterator bad design?
Is it generally considered bad practice to provide Iterator implementations that are "infinite"; i.e. where calls to hasNext() always(*) return true?
Typically I'd say "yes" because the calling code ...
44
votes
2answers
12k views
IList vs IEnumerable for Collections on Entities
When I have entities in my domain with lists of things, should they be exposed as ILists or IEnumerables? E.g. Order has a bunch of OrderLines.
43
votes
1answer
1k views
How do I apply the pimp-my-library pattern to Scala collections?
One of the most powerful patterns available in Scala is the "pimp-my-library" pattern, which uses implicit conversions to appear to add methods to existing classes without requiring dynamic method ...
43
votes
8answers
19k views
What's the best way of implementing a thread-safe Dictionary in .NET?
I was able to implement a thread-safe Dictionary in C# by deriving from IDictionary and defining a private SyncRoot object:
public class SafeDictionary<TKey, TValue>: IDictionary<TKey, ...
42
votes
7answers
17k views
How do I overload the square-bracket operator in C#?
DataGridView, for example, lets you do this:
DataGridView dgv = ...;
DataGridViewCell cell = dgv[1,5];
but for the life of me I can't find the documentation on the index/square-bracket operator. ...
41
votes
13answers
13k views
What is the most efficient Java Collections library?
What is the most efficient Java Collections library?
A few years ago, I did a lot of Java and had the impression back then that trove is the best (most efficient) Java Collections implementation. But ...
39
votes
11answers
42k views
How to make a new List in Java
We create a Set as
Set myset = new HashSet()
How do we create a List in Java?
39
votes
12answers
10k views
Does C# have a way of giving me an immutable Dictionary?
Is there anything built into the core C# libraries that can give me an immutable Dictionary?
Something along the lines of Java's:
Collections.unmodifiableMap(myMap);
And just to clarify, I am ...
38
votes
5answers
42k views
How to convert a Map to List in Java?
What is the best way to convert a Map<key,value> to a List<value>? Just iterate over all values and insert them in a list or am I overlooking something?
38
votes
18answers
2k views
List<BusinessObject> or BusinessObjectCollection?
Prior to C# generics, everyone would code collections for their business objects by creating a collection base that implemented IEnumerable
IE:
public class CollectionBase : IEnumerable
and then ...
35
votes
5answers
13k views
C#: Difference between List<T> and Collection<T> (CA1002, Do not expose generic lists)
Tried to run Run Code Analysis on a project here, and got a number of warnings that said something like this:
CA1002 : Microsoft.Design : Change 'List<SomeType>' in ...
34
votes
8answers
950 views
Java merge 2 collections in O(1)
I need to be able to merge 2 large collections into 1. Which collection type can I use best? I don't need random access to the individual elements. Usually I'd go for a linkedlist, however I can't ...
34
votes
3answers
10k views
When to use inverse=false on NHibernate / Hibernate OneToMany relationships?
I have been trying to get to grips with Hibernate's inverse attribute, and it seems to be just one of those things that is conceptually difficult.
The gist that I get is that when you have a parent ...
34
votes
13answers
3k views
What's Up with O(1)?
I have been noticing some very strange usage of O(1) in discussion of algorithms involving hashing and types of search, often in the context of using a dictionary type provided by the language system, ...
33
votes
5answers
15k views
Iterating over Java Collections in Scala
I'm writing some Scala code which uses the Apache POI API. I would like to Iterate over the Rows contained in the java.util.Iterator that I get from the Sheet class. I would like to use the Iterator ...
33
votes
18answers
13k views
Most efficient way to increment a Map value in Java
I hope this question is not considered too basic for this forum, but we'll see. I'm wondering how to refactor some code for better performance that is getting run a bunch of times.
Say I'm creating a ...
32
votes
15answers
1k views
How should I map string keys to values in Java in a memory-efficient way?
I'm looking for a way to store a string->int mapping. A HashMap is, of course, a most obvious solution, but as I'm memory constrained and need to store 2 million pairs, 7 characters long keys, I need ...
32
votes
7answers
15k views
What is the best way to clone/deep copy a .NET generic Dictionary<string, T>?
I've got a generic dictionary Dictionary that I would like to essentially make a Clone() of ..any suggestions.
31
votes
7answers
15k views
How to convert List<Integer> to int[] in Java?
This is similar to this question:
http://stackoverflow.com/questions/880581/java-convert-int-to-integer
I'm new to Java. How can i convert a List to int[] in Java? I'm confused because List.toArray() ...
30
votes
6answers
2k views
Why doesn't Java Map extends Collection?
I was surprised by the fact that Map<?,?> is not a Collection<?>.
I thought it'd make a LOT of sense if it was declared as such:
public interface Map<K,V> extends ...
29
votes
12answers
27k views
Select a random N elements from List<T> in C#
I need a quick algorithm to select a random 5 elements from a generic list. For example, I'd like to get a random 5 elements from a List.
28
votes
13answers
941 views
Have Arrays in .NET lost their significance?
For every situation that warrants the use of an array ... there is an awesome collection with benefits. Is there any specific use case for Arrays any more in .NET?
28
votes
6answers
6k views
Is there a way to get a collection of all the Models in your Rails app?
Is there a way that you can get a collection of all of the Models in your Rails app?
Basically, can I do the likes of: -
Models.each do |model|
puts model.class.name
end
Thanks in advance.
28
votes
4answers
5k views
Bidirectional 1 to 1 Dictionary in C#
I am looking for a generic, bidirectional 1 to 1 Dictionary class in C# (2), ie. a BiDictionaryOneToOne<T, S> which is guaranteed to only contain one of each value and key (up to RefEquals ...
28
votes
12answers
15k views
Comparing two collections for equality
I would like to compare two collections (in C#), but I'm not sure of the best way to implement this efficiently.
I've read the other thread about Enumerable.SequenceEqual, but it's not exactly what ...
27
votes
7answers
4k views
Why aren't Java Collections remove methods generic?
Why isn't Collection.remove(Object o) generic?
Seems like Collection<E> could have boolean remove(E o);
Then, when you accidentally try to remove (for example) Set<String> instead of ...
26
votes
13answers
1k views
Identify duplicates in a List
I have a List of type Integer eg:
[1, 1, 2, 3, 3, 3]
I would like a method to return all the duplicates eg:
[1, 3]
What is the best way to do this?
26
votes
10answers
2k views
Where can I learn about the various types of .NET lists?
Does anyone know a good resource to concisely explain the different types of lists available in C# and when their usage is appropriate?
For example, List, Hashtable, Dictionaries etc.
I'm never ...
25
votes
2answers
629 views
How are Scala collections able to return the correct collection type from a map operation?
Note: This is an FAQ, asked specifically so I can answer it myself, as this issue seems to come up fairly often and I want to put it in a location where it can (hopefully) be easily found via a search
...
25
votes
13answers
1k views
What is the fastest way to count the unique elements in a list of billion elements?
My problem is not usual. Let's imagine few billions of strings. Strings are usually less then 15 characters. In this list I need to find out the number of the unique elements.
First of all, what ...
25
votes
12answers
23k views
Java Collections copy list - I don't understand
I have an ArrayList and I want to copy it exactly. I use utility classes when possible on the assumption that someone spent some time making it correct. So naturally, I end up with the Collections ...
25
votes
9answers
6k views
What is the difference between List (of T) and Collection(of T)?
I've seen them used in a lot of the same ways, and I am worried I'm about to go down a path in design that is irreversible if I don't understand this better. Also, I am using .NET.
24
votes
3answers
2k views
Dictionary returning a default value if the key does not exist
I find myself using the current pattern quite often in my code nowadays
var dictionary = new Dictionary<type, IList<othertype>>();
// Add stuff to dictionary
var somethingElse = ...
24
votes
4answers
8k views
Are there strongly-typed collections in Objective-C?
I'm new to Mac/iPhone programming and Objective-C. In C# and Java we have "generics", collection classes whose members can only be of the type declared. For example, in C#
Dictionary<int, ...
24
votes
15answers
52k views
Java: Best way of converting List<Integer> to List<String>
I have a Java list of integers, List<Integer> and I'd like to convert all the integer objects into strings, thus finishing up with a new List<String>.
Naturally, I could create a new List ...