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.
0
votes
1answer
7 views
Using ant, check or compare all items listed in a file appear in another file or list
I was wondering if you could help. I am new to ant scripting.
I want to be able to compare two lists. File1.txt will contain a list of a lot of parameters and file2.txt will only contain a section ...
0
votes
1answer
14 views
AS3 List with expanding sublists
Basically I have a list of states that scrolls through, and I want a list of towns to appear next to the state once the cursor is over it.
I tried making each state name a button, and going to the ...
0
votes
0answers
37 views
Searching through a list of 100,000 elements as fast as possible in C#
I will soon have the need to repeatedly search through a list (about every 15s) of about 100,000 elements as fast as possible using C# looking for elements that have specific values. Would searching a ...
-1
votes
3answers
55 views
C# List Sort All elements
How can I sort a list by id in c# that contains Book items?
static List<Book> sorted = new List<Book>();
public string title { get; set; }
public string summary { get; set; }
public int ...
0
votes
1answer
33 views
EntityCollection<T> to List<T> through Reflection
Im using reflection to get data dynamically (Entity types are defined at runtime). Im currently returning a single object whenever my currentObject hasn't 1:N relationships (via "First" generic method ...
1
vote
1answer
18 views
some trouble on how to sum elements on a list in prolog
My problem is that for example i have this list on prolog
[[1,1],[1,1],[2,1],[2,2],[2,1],[3,1]]
I want as result:
[1,2],[2,4],[3,1]
in short word if the first element of the lists is equal i want ...
2
votes
1answer
20 views
Retrieve Array compressed by BlockCopy
I have two kinds of List: a list with int elements and other with bool elements. To pass these lists to server, I have to do what I did below:
using(MemoryStream m = new MemoryStream()){
...
2
votes
3answers
77 views
How to do an efficient loop with comparisons and insertions in other lists
I'm working on a web application (Python/Django) which handle a big database and I need to optimize this loop in order to obtain a better execution time.
I have a list of entries, each entry has a ...
1
vote
3answers
44 views
Searching through mutliple values in a list Pyhton
Suppose I have a list:
items = ['matt', 'zen', 'a', 'b', 'c', 'cat', 'dog']
if elem in items
`if 'a' 'b' 'c' found then return 1
Whenever elem finds 'a', 'b', 'c' in the list and return a value. ...
0
votes
1answer
24 views
Geocoder not putting out Address
I have trouble shot it down to the Geocoder not putting out an address, but I do not know why.
public void button_address (View v){
//Create Geocoder
gc = new Geocoder(this, Locale.getDefault());
...
-1
votes
1answer
30 views
Linq Multiple OR with a list
I'm currently working on a C# project where I'm using LINQ.
I was wondering if it was possible to make a "multiple OR clause" with Linq with a list as an entry for the where.
I mean something like ...
1
vote
5answers
76 views
How to use new operator with a template in C#
I'm trying to figure out how to use templates in C#. I wrote this:
public static List<TValue> deepCopyList<TValue>(List<TValue> src)
{
List<TValue> arr = new ...
0
votes
0answers
9 views
Convert a List of XML tag(type String line) to an XML file
If i have a List of these String :
<pmEntry>
<dmRef>
<dmRefIdent>
<dmCode modelIdentCode="26TE" systemDiffCode="A001" systemCode="C32" subSystemCode="1" ...
2
votes
2answers
62 views
Successive inheritance of Lists
I have a List structure setup as such:
List<List<Value>> l = new RowList();
which gives a "Type mismatch: Cannot convert from RowList to List<List<Value>>" error. The ...
5
votes
3answers
73 views
How to check all the elements in a list that has a specific requirement?
I'm doing a homework about a heart game with different version. It says that if we are given a list mycards that contains all the cards that player currently hold in their hands. And play is a single ...
-7
votes
0answers
38 views
C# HOW TO DISPLAY LIST OBJECTS FROM FILE TO FORM? [closed]
How do i all of the names in my List of people? I only want to display their firstnames and lastnames.. (from a text file) to a windows based form application
0
votes
1answer
12 views
how to traversal redis list
I have a list in redis, I can ensure the element in the list is ordered.Now I has a new element,I want to insert in the list and the list is also ordered. My way is traverse the list and compare the ...
1
vote
0answers
21 views
Converting BST to DLL in Java
I'm trying to convert a binary search tree to a doubly, circular linkedlist without the use of any helper methods. This code is only returning the larger half of the values and the smaller values are ...
3
votes
4answers
58 views
String in list to float
I have a list called 'ft_List that looks like...
[['Fall2001', '22.00', '2000', '01', '01', '120.0', '', 'N'],
[CgeCam2002', '20.00', '2000', '09', '04', '0.0', '1', ''],
['Fall2004', '18.50', ...
0
votes
1answer
13 views
How to cross ref's from dictionaries & lists
I am new to the whole python thing. I have a question and will try to keep it short.
I am trying to write a program where I have a group of items as below.
product_lookup = {"C1557E" : "FM51", ...
4
votes
1answer
98 views
Extending an ArrayList of Lists
Why is it not possible to do something like this?
RowList<List<Value>> extends ArrayList<List<Value>>
Also, how is it possible to do this?
RowList<Value> extends ...
0
votes
0answers
27 views
Store value from ListView items(column2) to List<string>
I have a WinForm, with ListView(2 columns), TextBox, and 3 Buttons(Add, OK, Cancel)
In my code a have a List, where I can store my ListView Items.
When I click Add Button, the value from TextBox will ...
-1
votes
0answers
10 views
How to test string list items against the selected item in a combo box
I have a List and I need to test all the items in the list against the selected item in a combo box so its either true or false.
0
votes
0answers
31 views
convert attribute R xml object into dataframe
My xml files are processed fine with the XML package into R. Here is how the root document looks, in one example - there are no values, only attributes and nodes within nodes - with attributes.
...
1
vote
2answers
66 views
Copy a linked list in c
typedef struct slist *LInt;
typedef struct slist{
int value;
LInt prox;
}Node;
LInt clone2(LInt l){
LInt nova=NULL,aux2=NULL;
while(l){
aux2=nova;
nova=(LInt)malloc(sizeof(Node));
...
1
vote
2answers
48 views
C - same data in dynamic struct
Here's my code:
#include <stdio.h>
#include <stdlib.h>
#define STR_LEN 255
#define TRUE 1
typedef struct
{
int id;
char text[STR_LEN];
char ...
0
votes
1answer
60 views
Python - len(somelist) returns different value than method in class
I have a class:
class something(object):
def __init__(self, name=None, someobjects=[]):
self.name = name
self.someobjects = someobjects
And I'd like to be able to get the number ...
0
votes
0answers
18 views
“PYTHONPATH”, going through the list and check elements
i have to set my variable
maya_env_variable = "PYTHONPATH"
after i have to set a new path
new_path_list ['User/Desktop']
i have to get the current value of my PYTHONPATH using ...
0
votes
0answers
14 views
Sencha Touch 2: Reselecting node in NestedList after store-update
how I've got a NestedList (SenchaTouch 2). After an update of the store from the list, i want to go back to the node (folder) where I was before. I found a function in the st2-doc called "gotonode" ...
1
vote
1answer
25 views
Accessing and changing list element attributes
The background to this is that I'm mostly a Python programmer who has some passing familiarity with R. I've been tasked to look at an R script that was written by a Perl programmer who used for and ...
0
votes
2answers
23 views
Performing work over a collection with events
I am starting a project where the program will poll a database every x seconds (say 10) and get rows that fall within a certain time period (based on a datetime field). This could be 0 - 40 rows or ...
1
vote
1answer
37 views
Selecting all objects from a list that return true on a member function, as a list?
I'm new to LINQ and trying to get a hold of it.
It's been useful so far for various things such as cutting down the code required, like when using .ForEach() to run a function on every object.
Now ...
4
votes
1answer
98 views
Python - return largest of N lists
I would like have a function return the largest of N list. With two items in the list I can write:
l1 = [3, 4, 5]
l2 = [4, 5, 6, 7]
def f(L):
if(len(L[0]) > len(L[1])):
return L[0]
...
4
votes
3answers
60 views
Deleting elements in a given list only?
New at this: What's the best way to copy (numerical) elements from one list to another without binding the elements across both lists? Eg:
A=[[6,2,-1],[9,-2,3]]
B=A[0]
del B[0]
will also set A to ...
1
vote
1answer
27 views
python - turning a txt table into a 2D list
So I have a plate reader at work that will only output results into a plain text file like this
1 2 3 4 5 6 7 8 9 10
A 1.551 0.686 ...
3
votes
5answers
119 views
How simplify list processing in Python?
Here's my first Python program, a little utility that converts from a Unix octal code for file permissions to the symbolic form:
s=raw_input("Octal? ");
digits=[int(s[0]),int(s[1]),int(s[2])];
...
-2
votes
1answer
71 views
All combinations of a list where each element can have few values [closed]
Well problem i need help with is simple:
You have list of length x.
Then you have array of numbers of length y.
I need to generate all possible lists of length x, that elements are from array.
I ...
0
votes
1answer
40 views
List containing strings and traditional regular expressions
I'm writing a script to check the contents of files in a directory. What I've got so far is a list with various strings, and would also like to include a traditional regular expression in the search. ...
0
votes
2answers
35 views
Why generator iteration in list of lists doesn't work?
If we have a list of lists:
super_list = [[0, 1, 2, 3, 4], [5, 6, 7, 8, 9]]
And we want to iterate over the inner elements we write this:
for sub_list in super_list:
for item in sub_list:
...
0
votes
2answers
38 views
Python: accessing elements of a list within a combination of lists
I am new to python and I have spent hours trying to figure out the following problem. I have an object that looks like this
>> new_list=['abscd','qrtye']['fghtj', 'wert']...more lists
>> ...
0
votes
3answers
29 views
Cannot disable list in Sencha Touch
I have a list in Sencha Touch and I want to disable the list when a button is clicked. I am handling the "tap" event of the button. However, when I run the line of code: ...
0
votes
4answers
30 views
Select element by element's content
I have list:
<ul class='mates'>
<li class='m' id='1'>Jakub</li>
<li class='f' id='2'>Vinnie</li>
<li class='m' id='3'>David</li>
</ul>
How ...
1
vote
4answers
76 views
Keep my list/dictionary as globally accessible
Ok... I'm trying to understand this whole object oriented programming but I keep ending up in a dead end. ;)
I'm trying to store or rather will store a great deal of data with using classes as I ...
2
votes
2answers
44 views
Why am I receiving “list index out of range” in my code? [closed]
I am receiving "list index out of range". I think I'm naming one of the variables incorrectly. It might make more sense if i add the rest in then.
I am trying to print out the differences in ...
0
votes
1answer
58 views
Retrieving list values from my hashmap returns null
My outer map contains string as key and values as an ArrayList which in turn holds an inner map of keys and values as strings. When I try to put the data into list and map and iterate through the ...
0
votes
2answers
21 views
Python multi-line string losing formatting
I am making a hangman game, which gets the hangman shape from a list. For some reason though, because each image is in a multiline string, somehow it loses formatting so that one line goes on the same ...
0
votes
1answer
12 views
jQuery list elements taking the whole height of the parent verticaly
i have four icons displayed verticaly in a ul with a 100% height and a fixed width.
i want the icons to fit according to the actual size of the ul.
<div>
<ul id="user-actions">
...
0
votes
1answer
10 views
Refresh controls when List changes
Visual Studio 2012 with DevExpress and Entity.
I have a user-control which contains a number of TextEdit-controls.
Each control is bound to one property of each item in a list using Databinding. (so ...
-3
votes
4answers
37 views
How can I do that html list?
I need to do a html list of elements like this pic:
I think its an external div that englobes li or option elements. It's possible?
Its for a form therefore I need to submit its value by post.
...
-1
votes
2answers
53 views
python list of strings readen from file to dictionary
I've writing this code:
#!/usr/bin/python
#ekadasi 2013
#sukhdev mohan
import datetime
import pickle
from time import strptime
def openfile(path, mode):
return open(path, mode)
def ...




