Collections API's provide developers with a set of classes and interfaces that makes it easier to handle collections of objects.
333
votes
36answers
333k 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 ...
89
votes
10answers
29k 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 ...
107
votes
7answers
11k 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 ...
514
votes
24answers
191k 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 ...
35
votes
8answers
19k views
Sorting an ArrayList of Contacts based on name? [duplicate]
Possible Duplicate:
Sorting a collection of objects
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 ...
167
votes
16answers
91k views
Java: What is the best way to filter a Collection?
I want to filter a java.util.Collection based on a predicate.
164
votes
7answers
57k views
Efficient equivalent for removing elements while iterating the 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 ...
53
votes
12answers
30k 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 ...
44
votes
12answers
91k views
How to clone ArrayList and also clone its contents?
How can I clone ArrayList but also clone its items in Java 1.5?
For example I have:
ArrayList<Dog> dogs = getDogs();
ArrayList<Dog> clonedList = ....something to do with dogs....
And I ...
23
votes
6answers
14k views
ObservableCollection that also monitors changes on the elements in collection
Is there a collection (BCL or other) that has the following characteristics:
Sends event if collection is changed AND sends event if any of the elements in the collection sends a PropertyChanged ...
71
votes
9answers
33k views
What's the best way of implementing a thread-safe Dictionary?
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, ...
51
votes
6answers
8k 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 ...
38
votes
8answers
5k 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 ...
66
votes
3answers
3k views
How do I apply the enrich-my-library pattern to Scala collections?
One of the most powerful patterns available in Scala is the enrich-my-library* pattern, which uses implicit conversions to appear to add methods to existing classes without requiring dynamic method ...
96
votes
9answers
53k 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() ...
92
votes
10answers
75k 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.
44
votes
8answers
13k views
count vs length vs size in a collection
From using a number of programming languages and libraries I have noticed various terms used for the total number of elements in a collection.
The most common seem to be length, count, and size.
eg.
...
106
votes
6answers
70k 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 ...
30
votes
8answers
22k views
How to modify or delete items from an enumerable collection while iterating through it in C#
I have to delete some rows from a data table. I've heard that it is not ok to change a collection while iterating through it. So instead of a for loop in which I check if a row meets the demands for ...
7
votes
1answer
511 views
What is this &:last Ruby construct called? [duplicate]
Possible Duplicate:
What does map(&:name) mean in Ruby?
What are things like survey.map(&:questions).flatten.compact called, so I can find more information about them :). What ...
54
votes
13answers
16k 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.
35
votes
5answers
9k views
ReadOnlyCollection or IEnumerable for exposing member collections?
Is there any reason to expose an internal collection as a ReadOnlyCollection rather than an IEnumerable if the calling code only iterates over the collection?
class Bar
{
private ...
37
votes
9answers
15k views
Convert an array of primitive longs into a List of Longs
This may be a bit of an easy, headdesk sort of question, but my first attempt surprisingly completely failed to work. I wanted to take an array of primitive longs and turn it into a list, which I ...
9
votes
8answers
4k views
Sorting a collection of objects
If I have a simple list of Strings:
List<String> stringList = new ArrayList<String>();
I can sort it with:
Collections.sort(stringList);
But suppose I have a Person class:
public ...
144
votes
14answers
16k 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 ?
33
votes
3answers
17k views
.NET - Convert Generic Collection to DataTable
I am trying to convert a generic collection (List) to a DataTable. I found the following code to help me do this:
// Sorry about indentation
public class CollectionHelper
{
private CollectionHelper()
...
43
votes
9answers
10k 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.
43
votes
10answers
58k views
How to convert int[] into List<Integer> in Java?
How do I convert int[] into List<Integer> in Java?
Of course, I'm interested in any other answer than doing it in a loop, item by item. But if there's no other answer, I'll pick that one as the ...
191
votes
8answers
96k views
C# Set collection?
Does anyone know if there is a good equivalent to Java's Set collection in C#? I know that you can somewhat mimic a set using a Dictionary or a HashTable by populating but ignoring the keys, but ...
48
votes
6answers
30k 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.
14
votes
5answers
6k views
Why can Java Collections not directly store Primitives types?
Java collections only store Objects, not primitive types; however we can store the wrapper classes.
Why this constraint?
384
votes
13answers
176k 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?
49
votes
15answers
42k 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.
71
votes
12answers
27k views
What is the most efficient Java Collections library? [closed]
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 ...
56
votes
7answers
22k views
Collection<T> versus List<T> what should you use on your interfaces?
The code looks like below:
namespace Test
{
public interface IMyClass
{
List<IMyClass> GetList();
}
public class MyClass : IMyClass
{
public ...
77
votes
7answers
32k 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. ...
17
votes
7answers
4k views
Key-ordered dict in python
I am looking for a solid implementation of an ordered associative array (in terms of keys, not of insertion order).
More precisely, I am looking for a space-efficent implementation of a int-to-float ...
6
votes
5answers
3k views
Is there a Lower Bound function in C# on a SortedList?
Is there a Lower Bound function in C# on a SortedList? The function should return the first element equal to or greater than the specified key. Is there some other class that supports this?
Guys - ...
35
votes
7answers
22k views
Big-O summary for Java Collections Framework implementations?
I may be teaching a "Java crash-course" soon. While it is probably safe to assume that the audience members will know Big-O notation, it is probably not safe to assume that they will know what the ...
55
votes
5answers
28k 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 ...
40
votes
6answers
9k views
Is there any way to enforce typing on NSArray, NSMutableArray, etc.?
Can I make an NSMutableArray where all the elements are of type SomeClass?
33
votes
6answers
10k views
Limit size of Queue<T> in .NET?
I have a Queue<T> object that I have initialised to a capacity of 2, but obviously that is just the capacity and it keeps expanding as I add items. Is there already an object that automatically ...
11
votes
5answers
2k views
loop on list with remove
for (String fruit : list)
{
if("banane".equals(fruit))
list.remove(fruit);
System.out.println(fruit);
}
Here a loop with remove instruction.
At execution ...
38
votes
7answers
16k views
What does 'synchronized' mean?
Vector methods are synchronized. What does it mean programmatically and logically?
11
votes
6answers
9k views
How do you query object collections in Java (Criteria/SQL-like)?
Suppose you have a collection of a few hundred in-memory objects and you need to query this List to return objects matching some SQL or Criteria like query. For example, you might have a List of Car ...
6
votes
3answers
3k views
what happens when you modify an element of an std::set?
If I change an element of an std::set, for example, through an iterator, I know it is not "reinserted" or "resorted", but is there any mention of if it triggers undefined behavior? For example, I ...
3
votes
5answers
2k views
Javascript collection
sorry for noobie question. Can you explain please, what is the difference between:
1. var a = [];
a['b'] = 1;
2. var a = {};
a['b'] = 1;
I could not find article in the internet so wrote ...
2
votes
4answers
248 views
How can I obtain all the possible combination of a subset?
Consider this List<string>
List<string> data = new List<string>();
data.Add("Text1");
data.Add("Text2");
data.Add("Text3");
data.Add("Text4");
The problem I had was: how can I get ...
237
votes
15answers
183k 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 ...
104
votes
6answers
18k views
Apache Commons vs. Guava (formerly “Google Collections”) [closed]
I was looking for a bidirectional map implementation in Java, and stumbled upon these two libraries:
Apache Commons Collections
Guava (formerly "Google Collections")
Both are free, have the ...

