list may refer to: a linked list (an ordered set of nodes, each referencing its successor), or a form of dynamic array. Not to be used for HTML lists, use [li] instead.
249
votes
20answers
76k 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 ...
63
votes
14answers
13k views
Flatten (an irregular) list of lists in Python
Yes, I know this subject has been covered before (here, here, here, here), but as far as I know, all solutions, except for one, fail on a list like this:
L = [[[1, 2, 3], [4, 5]], 6]
Where the ...
206
votes
9answers
110k views
Making a flat list out of list of lists in Python [duplicate]
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 ...
74
votes
15answers
10k 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 ...
99
votes
5answers
42k 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?
403
votes
22answers
230k 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 ...
110
votes
15answers
75k 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 ...
63
votes
10answers
89k views
Convert generic List/Enumerable 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 ...
148
votes
14answers
66k 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>
97
votes
22answers
65k 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 ...
138
votes
9answers
123k 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 ...
99
votes
9answers
34k 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?
26
votes
3answers
1k views
Unexpected feature in a Python list of lists
I needed to create a list of lists in Python, so I typed the following:
myList = [[1] * 4] * 3
The list looked like this:
[[1, 1, 1, 1], [1, 1, 1, 1], [1, 1, 1, 1]]
Then I changed one of ...
144
votes
7answers
30k views
What's the difference between list and tuples in Python?
What's the difference?
What are the advantages / disadvantages of tuples / lists?
50
votes
7answers
28k views
Type List vs type ArrayList in Java
(1) List<?> myList = new ArrayList<?>();
(2) ArrayList<?> myList = new ArrayList<?>();
I understand that with (1), implementations of the List interface can be swapped. It ...
120
votes
9answers
119k 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 ...
13
votes
3answers
2k views
Java OOP : List versus ArrayList as reference type?
Ok so I know that Set, List and Map are interfaces but what makes the first line of code any better than the second line?
List myArr = new ArrayList();
ArrayList myArr = new ArrayList();
Thanks.
53
votes
7answers
39k 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);
...
35
votes
3answers
8k 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', ...
37
votes
11answers
70k views
Hide options in a select list using jQuery
I have an object with key/value pairs of options I want to hide/remove from a select list.
Neither of the following option selectors work. What am I missing?
$.each(results['hide'], function(name, ...
3
votes
6answers
330 views
Python list doesn't reflect variable change, new to python
Sorry if this is a simple question, but when I write this code:
polly = "alive"
palin = ["parrot", polly]
print(palin)
polly = "dead"
print(palin)
I thought it would output this:
"['parrot', ...
21
votes
6answers
36k views
How to get a list of current open windows/process with Java?
Does any one know how do I get the current open windows or process of a local machine using Java?
What I'm trying to do is: list the current open task, windows or process open, like in Windows ...
98
votes
5answers
37k views
11
votes
6answers
3k views
Arrays.asList() not working as it should?
I have a float[] and i would like to get a list with the same elements. I could do the ugly thing of adding them one by one but i wanted to use the Arrays.asList method. There is a problem though. ...
226
votes
10answers
91k 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', ...
143
votes
9answers
95k views
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 ...
22
votes
3answers
9k views
Android Swipe on List
Does anyone have a simple example of a ListActivity displaying Textviews in a column and when you swipe left to right you see that row in a new view? This would be to say edit the data for that row ...
32
votes
7answers
17k views
Performance of Arrays vs. Lists
Say you need to have a list/array of integers which you need iterate frequently, and I mean extremely often. The reasons may vary, but say it's in the heart of the inner most loop of a high volume ...
16
votes
3answers
232 views
Python list confusion
Let's say I have the following code:
a_list = [[0]*10]*10
This generates the following list:
[[0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[0, ...
7
votes
5answers
5k views
Does std::list::remove method call destructor of each removed element?
std::list<Node *> lst;
//....
Node * node = /* get from somewhere pointer on my node */;
lst.remove(node);
Does std::list::remove method call destructor(and free memory) of each removed ...
4
votes
5answers
8k views
Modifying list while iterating
l = range(100)
for i in l:
print i,
print l.pop(0),
print l.pop(0)
The above python code ...
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.
41
votes
12answers
26k views
Efficient way to shift a list in python
What is the most efficient way to shift a list in python?
Right now I have something like this:
>>> def shift(l, n):
... return l[n:] + l[:n]
...
>>> l = [1,2,3]
>>> ...
69
votes
9answers
70k 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))
...
13
votes
3answers
5k views
Merge multiple data frames in a list simultaneously
I have a list of many data frames that I want to merge (not merely rbind, for which plyr's rbind.fill would do the job in a stroke) into a single, combined data frame. Because the merge command only ...
302
votes
4answers
102k 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?
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?
29
votes
26answers
9k 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. ...
137
votes
7answers
76k views
Merge two lists in python?
Just as it sounds:
listone = [1,2,3]
listtwo = [4,5,6]
#outcome we expect: mergedlist == [1, 2, 3, 4, 5, 6]
20
votes
9answers
72k views
XML Serialize generic list of serializable objects
Can I serialize a generic list of serializable objects without having to specify their type.
Something like the intention behind the broken code below:
List<ISerializable> serializableList = ...
55
votes
6answers
18k views
python: list vs tuple, when to use each?
In Python, when should you use lists and when tuples?
Sometimes you don't have a choice, for example if you have
"hello %s you are %s years old" % x
then x must be a tuple.
But if I am the one ...
35
votes
7answers
23k views
How to remove elements from a generic list while iterating over it?
I am looking for a better 'pattern' for working with a list of elements which each need processed and then depending on the outcome are removed from the list.
You can't use .Remove(element) inside a ...
8
votes
6answers
16k views
PHP list of specific files in a directory
The following code will list all the file in a directy
<?php
if ($handle = opendir('.')) {
while (false !== ($file = readdir($handle)))
{
if (($file != ".")
&& ...
12
votes
8answers
23k views
intersection/union of arraylists in java
Are there any methods to do so? I was looking but couldn't find any.
Another question: I need these methods so I can filter files.
Some are AND filters and some are OR filters (like in set theory), ...
12
votes
3answers
14k views
Android: How to disable list items on list creation
I'm pretty new to Android dev and still working out a lot of things.
I've got a main menu showing using the following code, but can't work out how to disable selected items in the menu. Can anybody ...
179
votes
7answers
186k 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 ...
77
votes
6answers
32k views
Remove empty strings from a list of strings
I want to remove all empty strings from a list of strings in python.
My idea looks like this:
while '' in str_list:
str_list.remove('')
Is there any more pythonic way to do this?
72
votes
8answers
35k views
How to count the occurrences of a list item in Python?
Given an item, how to count its occurrences in a list in Python?
15
votes
14answers
20k views
“bad words” filter
Not very technical, but... I have to implement a bad words filter in a new site we are developing. So I need a "good" bad words list to feed my db with... any hint / direction? Looking around with ...
26
votes
4answers
77k views
Compare two Lists for differences
I would like some feedback on how we can best write a generic function that will enable two Lists to be compared. The Lists contain class objects and we would like to iterate through one list, looking ...