36
votes
11answers
2k views
Is the Scala 2.8 collections library a case of “the longest suicide note in history” ?
First note the inflammatory subject title is a quotation made about the manifesto of a UK political party in the early 1980s. This question is subjective but it is a genuine question, I've made it CW …
28
votes
13answers
2k 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, …
26
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 …
23
votes
10answers
1k 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 …
18
votes
14answers
18k 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 …
15
votes
7answers
758 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 …
15
votes
9answers
5k 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 …
15
votes
8answers
9k 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?
14
votes
8answers
7k 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 …
13
votes
6answers
405 views
.NET: How to efficiently check for uniqueness in a List<string> of 50,000 items?
In some library code, I have a List that can contain 50,000 items or more.
Callers of the library can invoke methods that result in strings being added to the list. How do I efficiently check for …
13
votes
8answers
414 views
Removing alternate elements in a List<T>
What is the most efficient way to remove alternate (odd indexed or even indexed) elements in an List<T> without using a place holder list variable?
Also it would be appreciated if you could …
13
votes
13answers
9k 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 …
12
votes
7answers
909 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.
…
12
votes
9answers
3k 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 …
11
votes
7answers
780 views
Rule of thumb for choosing an implementation of a Java Collection?
Anyone have a good rule of thumb for choosing between different implementations of Java Collection interfaces like List, Map, or Set?
For example, generally why or in what cases would I prefer to use …
