Specific Implementations Almost every programming language provides support for list data structures. They are particularly common in functional languages, because their inductive properties lend themselves to elegant iterative and recursive abstractions. In Python, a list is what is referred to as ...
138
votes
15answers
41k 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 ...
96
votes
9answers
52k 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 ...
43
votes
13answers
5k 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 ...
22
votes
12answers
4k views
Flatten (an irregular) list of lists in Python
Yes, I know this subject has been covered before (here, here, here, here), but AFAIK, all solutions save one choke on a list like this:
L = [[[1, 2, 3], [4, 5]], 6]
where the desired output is
[1, ...
60
votes
5answers
22k 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
34
votes
9answers
52k 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 ...
175
votes
17answers
102k 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 ...
49
votes
18answers
37k 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 ...
95
votes
14answers
45k 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>
37
votes
10answers
23k 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 ...
58
votes
9answers
11k 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?
6
votes
6answers
1k 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. ...
19
votes
7answers
38k 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
5answers
2k 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 ...
63
votes
6answers
13k views
What's the difference between list and tuples in Python?
What's the difference?
What are the advantages / disadvantages of tuples / lists?
36
votes
6answers
21k 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);
...
20
votes
7answers
8k 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 ...
72
votes
8answers
71k 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 ...
3
votes
6answers
2k views
Inherit List<T>
what is the fastest way to implement a new class class that inherits from List?
class Animal {}
class Animals : List<Animal> {}
By simply doing this (class Animals : List<Animal> {}) I ...
3
votes
5answers
588 views
crawling a html page using php?
this website http://courses.westminster.ac.uk/CourseList.aspx which lists over 250 courses in one list, i wanted to get the name of each course and insert that into my mysql database using php, the ...
117
votes
9answers
55k 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', ...
73
votes
8answers
76k 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 ...
14
votes
5answers
307 views
Selectively disable subsumption in Scala? (correctly type List.contains)
List("a").contains(5)
Because an Int can never be contained in a list of String, this should generate an error at compile-time, but it does not.
It wastefully and silently tests every String ...
155
votes
71answers
8k views
What's the best name for a non-mutating “add” method on an immutable collection? [closed]
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 ...
65
votes
8answers
48k 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 ...
39
votes
5answers
12k views
15
votes
2answers
2k views
Improving pure Python prime sieve by recurrence formula
I am trying to optimize further the champion solution in prime number thread by taking out the complex formula for sub-list length. len() of the same subsequence is too slow as len is expensive and ...
20
votes
6answers
4k 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 ...
8
votes
3answers
314 views
Uses of self referencing lists
I know it is possible to create a self referencing list in languages like Python:
>>> my_list = [1,2]
>>> my_list.append(my_list)
>>> print my_list
[1,2,[...]]
>>> ...
0
votes
1answer
1k views
Help with abstract class in Java with private variable of type List<E>
It's been two years since I last coded something in Java so my coding skills are bit rusty.
I need to save data (an user profile) in different data structures, ArrayList and LinkedList, and they both ...
10
votes
4answers
15k views
Android - drag and drop - list rearrange
How can I create a list where I can rearrange list items with dragging
list rows to another row and so on (to change to order)?
Just like on the HTC Hero in the clocks app where you can rearrange
the ...
40
votes
8answers
39k 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))
...
24
votes
26answers
6k 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. ...
29
votes
12answers
30k views
Combining two sorted lists in Python
I have two lists of objects. Each list is already sorted by a property of the object that is of the datetime type. I would like to combine the two lists into one sorted list. Is the best way just to ...
15
votes
4answers
2k views
Pairs from single list
Often enough, I've found the need to process a list by pairs. I was wondering which would be the pythonic and efficient way to do it, and found this on Google:
pairs = zip(t[::2], t[1::2])
I ...
12
votes
4answers
3k views
Javascript equivalent of PHP's list()
Really like that function.
$matches = array('12', 'watt');
list($value, $unit) = $matches;
Is there a Javascript equivalent of that?
11
votes
3answers
999 views
Python: Slicing a list into n nearly-equal-length partitions
I'm looking for a fast, clean, pythonic way to divide a list into exactly n nearly-equal partitions.
partition([1,2,3,4,5],5)->[[1],[2],[3],[4],[5]]
partition([1,2,3,4,5],2)->[[1,2],[3,4,5]] ...
8
votes
3answers
8k 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 ...
2
votes
3answers
283 views
R: turning list items into objects
I have a list of objects that I've created manually, like this:
rand1 <- rnorm(1e3)
rand2 <- rnorm(1e6)
myObjects <- NULL
myObjects[[1]] <-rand1
myObjects[[2]] <-rand2
...
3
votes
2answers
3k views
Android listview with checkbox problem
I have a weird problem! I'm trying to create a listview with checkboxes. In my other thread I was told that I should use an array that keeps track of the rows that are checked. I did that and it ...
2
votes
3answers
771 views
How slow is Python's string concatenation vs. str.join?
As a result of the comments in my answer on this thread, I wanted to know what the speed difference is between the += operator and ''.join()
So what is the speed comparison between the two?
14
votes
6answers
21k 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 ...
3
votes
4answers
278 views
Projecting a list of lists efficiently in F#
I have to do projection of a list of lists which returns all combinations with each element from each list. For example:
projection([[1]; [2; 3]]) = [[1; 2]; [1; 3]].
projection([[1]; [2; 3]; [4; ...
1
vote
7answers
798 views
Python list: How to read the previous element when using for loop? [closed]
Possible Duplicates:
Python - Previous and next values inside a loop
python for loop, how to find next value(object)?
Hi, everyone.
I've got a list contains a lot of elements, I iterate ...
0
votes
1answer
70 views
Adding specialized functionality to STL containers
I have a very special scenario, and I'm trying to add functionality to "list"...
#include <list>
template <typename T>
class ShortList : public std::list<T> {
private:
...
0
votes
3answers
217 views
How do I find elements that are appear k-times in an unsorted list with O(1) space and O(n) time cost (with bounded element size) [closed]
That's not a question, but rather an aggregation post.
So the problem is: how can I achieve O(1) space and O(n) time complexity operating some value-type item (usually integers or chars) list, if I ...
21
votes
4answers
3k 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 ...
10
votes
10answers
41k 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 = ...
13
votes
8answers
8k views
Efficiently selecting a set of random elements from a linked list
Say I have a linked list of numbers of length N. N is very large and I don’t know in advance the exact value of N.
How can I most efficiently write a function that will return k completely random ...
5
votes
4answers
2k views
Getting the list of running applications ordered by last use
I'd like to get the list of running applications in the same order they appear when doing ⌘ + ⇥
I.e. if I use TextEdit, then Preview, then iCal, the order is
iCal
Preview
TextEdit
Using ...