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.
1
vote
2answers
10 views
Scheme, Check if anything in two lists are the same
Is it possible to check two list against each other if anything is the same in them?
(check-list '(hey cookie monkey) '(apple pizza cookie) ==> #t
I tried something like
(define (check-list list ...
9
votes
4answers
2k views
How to pick an item by its probability?
I have a list of items. Each of these items has its own probability.
Can anyone suggest an algorithm to pick an item based on its probability?
0
votes
0answers
17 views
List<Arraylist<T>>> changes multiple entrys
I have a List<ArrayList <T>> called arraylist and for example I want to change just
arraylist.get(4).get(6)
by
arraylist.get(4).get(6).setName(),
it also changes
...
0
votes
1answer
47 views
equal height for parallel list items using CSS
I have this situation click here
according to text length, the buttons height changes. when it does I want its parallel button height made equal to that of first one(not of all buttons but of only ...
0
votes
1answer
25 views
List<List<Double>> to double[][] for JAMA or other libs
i cannot get my List> to double[][] to work on linear algebra package like JAMA.
Basically i have some sort of List with coordinates like this :
[[2.63, 11.087, -12.054],
[2.357, 13.026, -15.29],
...
1
vote
3answers
67 views
How to merge Lists in Python?Merging python lists (0,1,2) & (A,B,C) to get (0A, 1B, 2C)
I have two lists that I need to merge, but the normal merging questions that I saw didn't seem to help.
l1 = (0,1,2,3)
l2 = ('A','B','C','D')
And I need it to become
((0,'A'), (2,'B'), (3,'C'))
1
vote
1answer
9 views
Sharepoint list that sends an email
I have a Sharepoint 2010 installation and I have troubles getting this works: I have a list with some columns:
Place
Assigned to
Date and time
Comments
I want Sharepoint sends an email when a new ...
0
votes
0answers
16 views
How to find the selected list item in the Connected Sorted List
i am using the Connected sort able lists to implement the drag and drop functionality between two list boxes. how do i find the selected element (or list items present in the 2nd list box after the ...
2
votes
4answers
2k views
Python ftp list only directories and not files
I would like to list all directories on a ftp directory and then enter each of them.
The problem is that my code also list file and try to enter them as well.
Is there a way to get a return value ...
0
votes
2answers
902 views
For Loop List in Shellscript
I am trying to do something like this in shellscript:
STEP=5
LIST=[1-$STEP]
for i in $LIST
echo $i
done
The output I expect is:
1 2 3 4 5
I probably have seen this usage before ( e.g. [A-Z] ...
0
votes
0answers
22 views
jQuery plugin replaceElements replaces all Elements over the whole document
I like to replace an ul-li-list (ul#menu) in div-p-"list" (div#menu). That means that ul becomes div and li becomes p-tag.
Problem: The Plugin I have found replaces all ul-li-lists all over the ...
0
votes
1answer
45 views
Increment string value in List
This is not much complicated. But I am wondering how to make it possible.
XmlAttribute ids3 = item.GetAttributeNode("href");
string hrefname = ids3.Value;
value1.Add(hrefname); ...
0
votes
1answer
8 views
Manually scrolling through list
I need to manually handle the scrolling through a list using the arrows keys, while i successfully handled the changing the selection through the items, if the list is bigger than its display and ...
0
votes
3answers
22 views
List of list to string
I have a list of list for example :
sample = [['a'],['b']]
I want this list to be converted to a string list like
sample = ['a','b']
I have used lists before but this seems to be bothering me!!
...
1
vote
2answers
48 views
c# dictionary/list with reflection
HI guys say I have an object with type dictionary
I already made a function that will add data to dictionary and get data from a dictionary using reflection.
My problem is how do you modify an item ...
-2
votes
2answers
29 views
How I can fill a treeView with a List<string>? [closed]
hi i have a question to treeview.
I have a List liste and the treeview with the name treeLic. Now I want to fill this treeview with this list. Can I do this and how?
XmlReader xr = ...
2
votes
3answers
156 views
Haskell <<loop>>
With getIndex xs y I want the index of the first sublist in xs whose length is greater than y.
The output is:
[[],[4],[4,3],[3,5,3],[3,5,5,6,1]]
aufgabe6: <<loop>>
why getIndex does ...
-1
votes
3answers
90 views
Script to parse .xml files and list tags [SOLVED]
I need a script to go through a directory recursively and parse every .xml files and list tags by order of most frequent to less frequent and tell how many times each tag appears in order to make a ...
28
votes
5answers
16k views
Compare two List<T> objects for equality, ignoring order
Yet another list-comparing question.
List<MyType> list1;
List<MyType> list2;
I need to check that they both have the same elements, regardless of their position within the list. Each ...
0
votes
2answers
41 views
Finding the indices of matching elements in list in Python
I have a long list of float numbers ranging from 1 to 5, called "average", and I want to return the list of indices for elements that are smaller than a or larger than b
def find(lst,a,b):
result ...
0
votes
3answers
55 views
Python Multiplication within a List
I have a list like this:
[(u'a', 0, 25), (u'a', 1, 11), (u'a', 3, 60), (u'a', 4, 89), (u'b', 0, 18),
(u'b', 1, 76), (u'b', 2, 52), (u'b', 3, 75), (u'b', 4, 46)]
I would like to take 0th element ...
0
votes
0answers
25 views
Dynamic Casting _List objects
I have created an object list by using command var objectList = new List<object>(); and then added several objects to list by using objectList.Add(Activator.CreateInstance(typeToLoad));.[I have ...
2
votes
1answer
120 views
Is there a package like bigmemory in R that can deal with large list objects?
I know that the R package bigmemory works great in dealing with large matrices and data frames. However, I was wondering if there is any package or any ways to efficiently work with large list.
...
0
votes
1answer
18 views
Doubts on Lists for custom class on Windows Phone 7.1
Using Visual Studio Express 2010 for Windows Phone | C# | Silverlight
Lets say I have created a class called Person and it has two properties: name(string) and amount(int).
List<Person> ...
-5
votes
3answers
70 views
How to search a list and return the specific strings and data associated with it using Java
I have a list of names with Account numbers associated with them. How would I create a method that when I type a certain name from the keyboard it would search the list and return all the account ...
0
votes
2answers
31 views
How to get the package name of an application in android and then launch that app using Intent?
I am developing an android app in that app there is a button when i click the button it shows another activity which contains the list of installed apps on the phone when the user selects an app the ...
8
votes
1answer
395 views
Interactively work with list objects that take up massive memory
I have recently discovered the wonders of the packages bigmemory, ff and filehash to handle very large matrices.
How can I handle very large (300MB++) lists? In my work I work with these lists all ...
0
votes
1answer
38 views
Select Distinct rows based a particular column value in list
I have the following list Lsit<Car> lstcarIP it has the following data
ID | Name | Year
0 - Zen - 1990
1 - Alto - 2003
3 - Zen - 2004
4 - Santro - 2000
5 - Alto - 2003
Irrespective ...
0
votes
0answers
8 views
Google Spreadsheets: Setting list of items to default value
I have a range of cells in a Google Spreadsheet, each with a list of items that drop down (0,1,2,3). At the end of every week I would like to set them all back to the default zero. Is there a quick ...
0
votes
1answer
33 views
C/C++ - HWInfo - libhd - How to get the name list of all available devices?
On Linux, one can use command "hwinfo" (after installing it) in Terminal to print a lot of device information. While this is nice, I'd also like to utilize libhd (included in hwinfo) to get device ...
4
votes
5answers
170 views
Arithmetic operations on list with missing values
I'm trying to do some arithmetic on a list that may contain missing values.
So far, I'm representing my list with Option[Int]:
val mylist=List( Option(4), Option(8), None )
With this ...
0
votes
2answers
53 views
List of different objects that implement an interface [closed]
I saw something similar to this using inheritance but I want to use an interface
I want to create a single arraylist consisting of different objects.
ArrayList containing the following objects ...
1
vote
4answers
56 views
Button click to add string to List<string>
I would like to have a button that when clicked will take the text of what's inside the text box and add it to a list of strings. Then, I have another button that when clicked will output the count ...
0
votes
1answer
28 views
Switching BG using Python
I'm writing a simple program that changes my background when I run it.
I'm trying to make it so that when I run it, it changes the background then when I run it again it goes to the next image in the ...
0
votes
1answer
47 views
Can a unique list accept lower and upercase entries
My script logs information about all the unique file types in a directory and subdirectory. In the process of creating a unique list of file extensions the current code considers that jpg, Jpg and JPG ...
2
votes
4answers
70 views
Python not ignoring empty items in list
I have this code to print some strings to a text file, but I need python to ignore every empty items, so it doesn't print empty lines.
I wrote this code, which is simple, but should do the trick:
...
0
votes
3answers
41 views
How to sort List<Point> [duplicate]
I have this variable:
List<Points> pointsOfList;
it's contain unsorted points( (x,y) - coordinates);
My question how can I sort the points in list by X descending.
for example:
I have ...
1
vote
2answers
98 views
Partitioning a list in Python
I would like to find out how to modify the contents of a list, specifically filenames which have been returned by os.listdir().
The filenames consist of a number of duplicate names followed by an ...
0
votes
0answers
11 views
jQuery.cookie saving and loading settings
I got this runtime dynamic unordered list with .sortable() which I want to store its new listitem order in my cookie after a drag event. On a page reload the saved index values get loaded from the ...
1
vote
3answers
64 views
Recursive object-listing
Is there an elegant way in R to recursively turn an arbitrary deep list (containing lists and vectors) into a vector of paths? For example, convert this:
list(
home = list(
jerry = c("R", ...
0
votes
3answers
40 views
Load distinct values from database into List<>
I made a Record POCO class with a foreign key to an Event (=sport discipline).
A record can be linked to 1 event but an event can have multiple records (world record, olympic record, etc..).
Now I ...
0
votes
2answers
58 views
Not printing a string if I have an empty list
So I have some code where I create a list at the start and then ask a user if he wants to make an object (turtle), in which case it adds that to the list, OR if he wants to move the turtle (X). If the ...
2
votes
4answers
64 views
Access property/variable from unknown object
I have a list of 'object' that has different kinds of objects in it. I need to be able to edit/read a property of the objects that all of them have, but I don't know how to do that.
...
0
votes
0answers
28 views
Extract list object slot into function with R
I've fitted 28 arma+garch models with a function and put the 28 fits all togheter via sapply: `
garch_models <- sapply(returns, garchAuto)`
Now I have the following strucutre (only a extract of ...
-4
votes
1answer
56 views
C# Joining 3 Lists with Linq [closed]
I want to join 3 Lists that have the following format:
List1:
CountryID | CountryData | regionUID
===================================
12 | Has good gras | 4567
12 | nice ...
1
vote
7answers
940 views
Can I count on order being preserved in a Python tuple?
I've got a list of datetimes from which I want to construct time segments. In other words, turn [t0, t1, ... tn] into [(t0,t1),(t1,t2),...,(tn-1, tn)]. I've done it this way:
# start by sorting ...
15
votes
10answers
64k views
C#: How to add subitems in ListView
Creating an item(Under the key) is easy,but how to add subitems(Value)?
listView1.Columns.Add("Key");
listView1.Columns.Add("Value");
listView1.Items.Add("sdasdasdasd");
//How to add "asdasdasd" ...
1
vote
1answer
29 views
Center multiple row list items with specific amount per row
I'm trying to create an unordered list spanning over multiple rows that is always centered and where I can set which child breaks into a second row, for example -
link | link | link | link
link ...
4
votes
3answers
56 views
Printing lists onto tables in python
If i had three lists such as
a = [1, 2, 3]
b = [4, 5, 6]
c = [7, 8, 9]
And wanted to print it like this
1 4 7
2 5 8
3 6 9
How would i do that?
0
votes
2answers
72 views
Issue with adding a Double to a List<double>
I'm getting an issue with adding a Double to a List<double> from a CSV file. Now I've done this before, with the exact same file, and added it to a Double Array.
Here is my code that works with ...





