1
vote
5answers
59 views
Python: Split list into list of dicts?
Just beginning with python and know enough to know I know nothing. I would like to find alternative ways of splitting a list into a list of dicts. Example list:
data = ['ID:0:0:0',
…
0
votes
3answers
69 views
C# Given a desired order need a space efficient list reordering or sorting
My objective is: Given a list of entries, and a desired ordering, rearrange the list of entries according to this ordering. The list will be very large, so space efficiency is important.
Ex:
…
3
votes
2answers
83 views
C# List<T>.ConvertAll in .NET 2.0
I have a list of strings. All of the strings have whitespace that needs to be converted to underscores. I am fully capable of using a for or foreach loop to do this. I am still relatively new to C# …
0
votes
6answers
66 views
Pointing to the first object in a linked list, inside or outside class?
Which of these is a more correct way to store the first object in a linked list?
Or could someone please point out the advantages/disadvantages of each. Thanks.
class Node
{
int var;
Node …
6
votes
6answers
141 views
Lists in Haskell : data type or abstract data type?
Hi,
From what I understand, the list type in Haskell is implemented internally using a linked list. However, the user of the language does not get to see the details of the implementation, nor does …
0
votes
3answers
107 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 …
0
votes
2answers
29 views
Prolog: Test if an arbitrary list is symmetric
Is there a way to test wether an arbitrary list is symmetric?
For example:
?- symmetric([a,b,b,a]).
true.
?- symmetric([a,b,c,a]).
false.
?- symmetric([a,a]).
true.
My attemp was to compare the …
3
votes
7answers
124 views
How to check if a list is ordered?
I am doing some unit tests and I want to know if there's any way to test if a list is ordered by a property of the objects it contains.
Right now I am doing it this way but I don't like it, I want a …
3
votes
6answers
122 views
In what case would I use a tuple as a dictionary key?
I was studying the difference between lists and tuples (in Python). An obvious one is that tuples are immutable (the values cannot be changed after initial assignment), while lists are mutable.
A …
3
votes
2answers
26 views
Json.net deseralize to a list of objects in c# .net 2.0
Hi,
I'm trying to deseralize some json into a collection (list), but I'm not sure which method will return a list of objects, or do I have to loop through something and copy it to my own list?
Can …
6
votes
2answers
124 views
A pythonic way how to find if a value is between two values in a list
Having a sorted list and some random value, I would like to find in which range the value is.
List goes like this: [0, 5, 10, 15, 20]
And value is, say 8.
The standard way would be to either go from …
0
votes
5answers
97 views
Java: Iterating HashMap - Algorithm needed
Hi! I have a question.
I have a list of names, say 8 names: Joe, Bob, Andrew, Bill, Charlie, Sarah, Ann, Victor
The count of names might differ**.
1) What should I use as name list? Hashmap, …
0
votes
2answers
122 views
string split function in delphi
Hello, All
actually i was opened question previously,
but can't get answer what i exactly want, so i would like to ask again thanks All
for example, i have some text file name is 'test.txt' , and …
2
votes
6answers
174 views
Convert list of Integers into one Int (like concat) in haskell
Pretty much what the title says. I have a list of Integers like so: [1,2,3]. I want to change this in to the Integer 123. My first thought was concat but that doesn't work because it's of the wrong …
3
votes
5answers
134 views
What’s the standard algorithm for syncing two lists of objects?
I'm pretty sure this must be in some kind of text book (or more likely in all of them) but I seem to be using the wrong keywords to search for it... :(
A common task I'm facing while programming is …
