Tagged Questions

A list or linked list in programming is a collection of objects stored with a reference to the next object in the sequence.

learn more… | top users | synonyms (1)

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?
139
votes
71answers
7k views

What's the best name for a non-mutating “add” method on an immutable collection?

Sorry for the waffly title - if I could come up with a concise title, I wouldn't have to ask the question. Suppose I have an immutable list type. It has an operation Foo(x) which returns a new ...
117
votes
17answers
71k views

Python: Sort a dictionary by value

I have a dictionary of values read from 2 fields in a database: a string field and a numeric field. The string field is unique so that is the key of the dictionary. I can sort on the keys, but how ...
98
votes
14answers
31k views

How do you split a list into evenly sized chunks in Python?

I have a list of arbitrary length, and I need to split it up into equal size chunks and operate on it. There are some obvious ways to do this, like keeping a counter and two lists, and when the second ...
90
votes
6answers
97k 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 ...
88
votes
9answers
41k views

In Python how do I sort a list of dictionaries by values of the dictionary?

I got a list of dictionaries and want that to be sorted by a value of that dictionary. This [{'name':'Homer', 'age':39}, {'name':'Bart', 'age':10}] sorted by name, should become [{'name':'Bart', ...
82
votes
4answers
2k views

Why can I initialize a List like an array in C#?

Today I was surprised to find that in C# I can do: List<int> a = new List<int> { 1, 2, 3 }; Why can I do this? What constructor is called? How can I do this with my own classes? I know ...
81
votes
14answers
38k 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>
80
votes
4answers
28k views

Accessing the index in Python for loops

Does anyone know how to access the index itself for a list like this: ints = [8,23,45,12,78] When I loop through it using a for loop, how do I access the loop index, from 1 to 5 in this case?
78
votes
1answer
18k views

How do I randomly select an item from a list using Python?

Let's say, as an example, I have the following list: foo = ['a', 'b', 'c', 'd', 'e'] What is the best way to retrieve an item at random from this list?
60
votes
11answers
61k 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 ...
56
votes
8answers
54k views

C# generic list <T> how to get the type of T?

Let say I have a List< T > abc = new List< T >; inside a class public class MyClass<T>//.... Later, when I initialize the class the T becomes MyTypeObject1. So I have a generic list ...
52
votes
9answers
36k views

Making a flat list out of list of lists in Python [closed]

Possible Duplicates: Flattening a shallow list in Python Comprehension for flattening a sequence of sequences? I wonder whether there is a shortcut to make a simple list out of list of ...
50
votes
5answers
16k views

Android Endless List

How can I create a list where when you reach the end of the list I am notified so I can load more items? Thanks, Isaac
49
votes
6answers
9k views

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

What's the difference? What are the advantages / disadvantages of tuples / lists?
46
votes
8answers
36k views

C# using LINQ to remove objects within a List<T>

I have LINQ query such as: var authors = from x in authorsList where x.firstname == "Bob" select x; Given that authorsList is of type List, how can I delete any Author ...
46
votes
10answers
7k views

Array versus List<T>: When to use which?

MyClass[] array; List<MyClass> list; What are the scenarios when one is preferable over the other? And why?
45
votes
3answers
23k views

Get the size of a list in python?

items = [] items.append("shrooms") items.append("meth") items.append("weed") // FAKE METHOD:: items.amount() // should return 3 How I do it right?
43
votes
3answers
2k views

If x is list, why does x += “ha” work, while x = x + “ha” throw an exception?

From what little I know, + op for lists only requires the 2nd operand to be iterable, which "ha" clearly is. Thanks in advance. In Code: >>> x = [] >>> x += "ha" >>> x ...
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?
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?
36
votes
6answers
25k views

How can I add an item to a IEnumerable<T> collection?

My question as title above. For example, IEnumerable<T> items = new T[]{new T("msg")}; items.ToList().Add(new T("msg2")); but after all it only has 1 item inside. Can we have a method like ...
35
votes
12answers
4k views

What is the most “pythonic” way to iterate over a list in chunks?

I have a Python script which takes as input a list of integers, which I need to work with four integers at a time. Unfortunately, I don't have control of the input, or I'd have it passed in as a list ...
33
votes
3answers
21k views

How to get the last element of a list?

I found many different ways of getting the last element from a list in Python: alist[-1] alist[len(alist) -1] How would you do this?
33
votes
7answers
29k views

Python - Intersection of two lists

I know how to get an intersection of two flat lists: b1 = [1,2,3,4,5,9,11,15] b2 = [4,5,6,7,8] b3 = [val for val in b1 if val in b2] or def intersect(a, b): return list(set(a) & set(b)) ...
30
votes
18answers
27k 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 ...
29
votes
4answers
12k views

How to empty a list in Python?

It seems so "dirty" emptying a list in this way: while len(alist) > 0 : alist.pop() Does a clear way exist to do that?
29
votes
4answers
38k views

C# Freely convert between List<T> and IEnumerable<T>

How can I convert a List to an IEnumerable and back again. The reason I want to do this is to run a series of LINQ statements on the List i.e. sort etc
28
votes
7answers
618 views

Eliminate consecutive duplicates of list elements

Is there a "nice" way to eliminate consecutive duplicates of list elements? Example: ["red"; "red"; "blue"; "green"; "green"; "red"; "red"; "yellow"; "white"; "white"; "red"; "white"; "white"] ...
28
votes
7answers
20k views

Python: check if an object is a list or tuple (but not string)

This is what I normally do in order to ascertain that the input is a list/tuple - but not a str. Because many times I stumbled upon bugs where a function passes a str object by mistake, and the target ...
27
votes
4answers
15k views

How do I use Linq to obtain a unique list of properties from a list of objects?

I'm trying to use Linq to return a list of ids given a list of objects where the id is a property. I'd like to be able to do this without looping through each object and pulling out the unique ids ...
26
votes
7answers
39k views

Generic List to DataTable

I have few methods that returns different Generic Lists. Exists in .net any class static method or whatever to convert any list into a datatable? The only thing that i can imagine is use Reflection ...
26
votes
5answers
15k views

Python - Create a list with initial capacity

Code like this often happens: l = [] while foo: #baz l.append(bar) #qux This is really slow if you're about to append thousands of elements to your list, as the list will have to ...
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
3answers
24k views

How to remove an element from a list by index in Python?

How to remove an element from a list by index in Python? I found the list.remove method but say I want to remove the last element, how do I do this? It seems like the default remove searches the ...
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
14answers
3k 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 ...
23
votes
2answers
8k views

Initialise a list to a specific length in Python

How do I initialise a list with 10 times a default value in Python? I'm searching for a good-looking way to initialize a empty list with a specific range. So make a list that contains 10 zeros or ...
23
votes
8answers
14k views

How do you remove duplicates from a list in Python whilst preserving order?

Is there a built-in that removes duplicates from list in Python, whilst preserving order? I know that I can use a set to remove duplicates, but that destroys the original order. I also know that I can ...
22
votes
5answers
7k views

How to clone a list in python?

Java has cloning methods. How can I do it on a list in python?
22
votes
6answers
15k views

Can you remove elements from a std::list while iterating through it?

I've got code that looks like this: for (std::list<item*>::iterator i=items.begin();i!=items.end();i++) { bool isActive = (*i)->update(); //if (!isActive) // items.remove(*i); ...
22
votes
4answers
43k views

Convert Collection to List

I am using TreeBidiMap from the apache collections library. I want to sort this on the values which are doubles. My method is to retrieve a Collection view of the values using Collection coll = ...
22
votes
3answers
2k views

Dictionary / List of words

What is the biggest / largest / best list of words in the English language? Something in a simple text file would be great.
22
votes
16answers
33k views

How do I join two lists in Java?

Conditions: do not modifiy the original lists; JDK only, no external libraries. Bonus points for a one-liner or a JDK 1.3 version. Is there a simpler way than: List<String> newList = new ...
22
votes
26answers
5k views

In Python, what is the fastest algorithm for removing duplicates from a list so that all elements are unique *while preserving order*?

For example: >>> x = [1, 1, 2, 'a', 'a', 3] >>> unique(x) [1, 2, 'a', 3] Assume list elements are hashable. Clarification: The result should keep the first duplicate in the list. ...
22
votes
13answers
38k views

How do I split a string into a list Python?

Learning to program, trying to do this I have a string like this 2+24*48/32 and I want to split it into a list like this ['2', '+', '24', '*', '48', '/', '32'] I have messed around with ...
21
votes
9answers
12k views

HashSet vs. List performance

It's clear that a search performance of the generic HashSet<T> class is higher than of the generic List<T> class. Just compare the hash-based key with the linear approach in the ...
20
votes
5answers
427 views

Resharper says I shouldn't use List<T>

I have a method: static void FileChangesDetected(List<ChangedFiles> files) I used Visual Studio 2010 and Resharper. Resharper always recommends that I change the List<T> to ...
20
votes
7answers
14k views

Python: List concatenation. What is difference in “append” and “+= []”?

What is the difference in: some_list1 = [] some_list1.append("something") and some_list2 = [] some_list2 += ["something"] I hope this hasn't been already posted. If so just point me in that ...
20
votes
3answers
3k views

A Transpose/Unzip Function in Python

I have a list of 2-item tuples and I'd like to convert them to 2 lists where the first contains the first item in each tuple and the second list holds the second item. For example: original = [('a', ...

1 2 3 4 5 186