Tagged Questions

21
votes
10answers
5k views

C# - List<T> or IList<T>

Can anyone explain to me why I would want to use IList over List in C#? Related question: Why is it considered bad to expose List<T>
20
votes
14answers
1k views

User interface for reordering a list items

I have a list of items as a part of a web application. The question is how user could manipulate the order of items in the list (not the list sort order). The typical way is to use arrow buttons to …
14
votes
9answers
1k 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.
14
votes
4answers
12k views

C# List<> OrderBy Alphabetical Order

I'm using C# on Framework 3.5. I'm looking to quickly sort a Generic List<>. For the sake of this example lets say I have a List of a Person type with a property of lastname. How would I sort …
13
votes
4answers
974 views

Is list::size() really O(n)?

Recently, I noticed some people mentioning that std::list::size() has a linear complexity. According to some sources, this is in fact implementation dependent as the standard doesn't say what the …
12
votes
8answers
8k views

How do I clone a generic list in C#?

I have a generic list of objects in C#, and wish to clone the list. The items within the list are cloneable, but there doesn't seem to be an option to do list.Clone() Is there an easy way around …
12
votes
4answers
3k views

How can I convert List<object> to Hashtable in C#?

I have a list of objects, each containing an Id, Code and Description. I need to convert this list into a Hashtable, using Description as the key and Id as the value. This is so the Hashtable can …
12
votes
16answers
1k views

What’s the point of Perl’s map?

Not really getting the point of the map function. Can anyone explain with examples its use? Are there any performance benefits to using this instead of a loop or is it just sugar?
11
votes
4answers
791 views

Python list slice used for no obvious reason

I occasionally see a list slice like this used in Python code: newList = list[:] Surely this is just the same as: newList = list Or am I missing something?
10
votes
17answers
2k views

Array or List in Java. Which is faster ?

I have to keep thousands of strings in memory to be accessed serially in Java. Should I store them in an array or should I use some kind of List ? Since arrays keep all the data in a contiguous chunk …
10
votes
6answers
743 views

What’s the difference between list and tuples in Python?

What's the difference? What are the advantages / disadvantages of tuples / lists?
10
votes
3answers
502 views

How to create automatic a list of items used in a LaTeX-document?

I want to add items in a LaTeX-document. Say for example, that I want add hints to the document. I create a command, so I can call something similar to this: \hint{foocareful}{Be careful with …
9
votes
3answers
266 views

What is the underlying data structure for Python lists?

What is the typical underlying data structure used to implement Python's built-in list data type?
8
votes
7answers
434 views

What is the pythonic way of checking if an object is a list?

I have a function that may take in a number or a list of numbers. Whats the most pythonic way of checking which it is? So far I've come up with try/except block checking if i can slice the zero item …
8
votes
5answers
434 views

Odd generics behaviour of List.toArray(T[])

I came across something very basic but extremely bewildering today. I needed to convert a list to an array. The list contained String instances. Perfect example of using List.toArray(T[]), since I …

1 2 3 4 5 68 next
15 30 50 per page