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
3answers
63 views
Map list to list of lists by index (Python)
I'm looking for an efficient way to map a list of values, say
x = [1,2,3,4,5,6,7,8,9]
to another list, containing lists of values of the same total range, for example
z = [[1,2,3], [4,5,6], ...
3
votes
4answers
40 views
append a list into end of list in list
Is there a good way to 'merge' 2 lists together so an item in one list can be appended to the end of a list in a list? For example...
a2dList=[['a','1','2','3','4'],['b','5','6','7','8'],[........]]
...
1
vote
3answers
25 views
Misplaced list elements due to CSS in firefox and chrome
I have a list of names which is rendered inside <ul>. I am applied some CSS code but facing some browser specific issues.
Chrome : List element is getting displaced by 1 row.
Firefox : All ...
0
votes
12answers
79 views
create dict from two lists python without zip()? [closed]
I'm creating a dict using zip(), how would I do it without zipping or numpy?
def listtodict(list1, list2):
d={}
return dict(zip(list1, list2))
print listtodict([1,2,3,4,5],['a','b','c','d','e'])
-5
votes
3answers
66 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
0answers
4 views
Using jcifs to list nodes on network
I've seen several Android applications being able to list nodes on "Network neighbourhood". Besides very cryptic info here:
https://lists.samba.org/archive/jcifs/2011-June/009631.html
I couldn't ...
16
votes
3answers
4k views
What is the 'pythonic' equivalent to the 'fold' function from functional programming?
What is the most idiomatic way to achieve something like the following, in Haskell:
foldl (+) 0 [1,2,3,4,5]
--> 15
Or its equivalent in Ruby:
[1,2,3,4,5].inject(0) {|m,x| m + x}
#> 15
...
1
vote
8answers
92 views
Python: What's a fast way to read and split a file?
I need to read a file and split it into lines, and also split those lines in half by tab characters, as well as getting rid of all speech marks. At the moment I have a working function. However, it is ...
0
votes
1answer
21 views
Xslt size of token array (tokenize, number of tokens)
Is there a way to getting the size of a token array after having run tokenize($text, '\s+')? Without running a loop.
I miss Java in these cases where I can just run list.size().
Cheers
Answer
...
1
vote
5answers
67 views
Converting String List into Int List in SQL
I have a nvarchar(MAX) in my stored procedure which contains the list of int values, I did it like this as it is not possible to pass int list to my stored procedure,
but, now I am getting problem as ...
0
votes
4answers
72 views
Python: how to iterate over list of list while iterating over each item in each nested list
I want to iterate over my list of list and iterate over each item in each nested list.
below is an example of one of my list of lists (just an example - some of my lists of lists have 1 list others ...
139
votes
9answers
124k 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 ...
1
vote
1answer
19 views
Xml List to Jaxb
What way JAXB give to convert this type of XML conversion
<options>
<option name="name">https://abc.com/</option>
<option name="name2">https://abc.com/</option>
...
0
votes
1answer
16 views
How can I put featured results above non featured in my results list?
This code from loop-ad_listing.php is what makes all the post thumbnails appear in a list. But now I want to put featured ads above the non featured in the same way. Featured thumbnails are called ...
0
votes
2answers
181 views
Write a SQL to Join tables and save it to a List <Object>
I am using Netbeans 6.9.1, glassfish 3.1, and MySQL as my DB.
I have a List <Hotel> object, that saves all the records from the Hotel Table (from MySQL) into it.
There is another object ...
0
votes
2answers
48 views
Select from list by index, but keep other associated items in list
If I have a 2dlist of points like this...
myList=[['ab','0_3','-1','1'],['bm','2_1','-3','2'],['am','4_1','-1','3'],...]]
where '-1','1' for example are x, y coordinates (the last 2 columns) and I ...
1
vote
3answers
26 views
PHP dynamic list pick values in next page
Am trying to insert values from a php generated option list into a mysql database. The error i am getting in a "notice error". The error reads:
Notice: Undefined index: fixture_id in
...
0
votes
1answer
17 views
list_for_each_entry reset cursor
Hi I am new in this and I trying to use list_for_each_entry to iterate over a list. It looks something like this
list_for_each_entry(pos, head, member){
if (something == pos.x)
//reset the ...
0
votes
1answer
39 views
Moving objects as a list
So in the below code I am trying to give a menu of instructions. What I am having problems with is the 'N' command section that calls the MakeTurtle() function. I am trying to add all turtles to a ...
0
votes
1answer
28 views
How to use SequenceEqual to compare coordinates?
If the nested int[] contains coordinates x, y, how do I compare them using SequenceEqual?
The List are a group of coordinates. I want to check every other List to see if they have the same number of ...
-2
votes
0answers
10 views
I have no left sidebar, profile link, etc since my page changed the other day [closed]
My FB changed a few days ago and since that time, I can not see anything on the left where the new "sidebar" is supposed to be. It's just a big blank white space. All of my lists, apps, etc are ...
0
votes
3answers
48 views
make object from list
Ok so I have this code:
earth = makeWorld()
def turtle():
list = ['Bill', 'Fred']
for name in list:
print name
name = makeTurtle(earth)
What I am wanting to do is iterate through the ...
1
vote
3answers
77 views
Is it possible see the value returned in c++?
So..I'm testing a function with assert: (The value of pBola1 is 1)
assert(BomboTest.TreureBola(1)==pBola1);
BomboTest.TreureBola it's a function that returns a random number (in this case has to ...
0
votes
1answer
59 views
Iterate through a list
Very simple problem. Sorry I am new. I have this code below:
list = ['edward', 'jason', 'john']
for i in list:
print list
and it produces:
john
Why do I only get the last name? I want all of ...
4
votes
3answers
509 views
SharePoint List data source giving HTTP 401 “Unauthorized” error
I have built a report that uses a SharePoint list as its data source. The data source is set to use Windows Authentication (integrated security) in SSRS. It runs just fine in SSRS/BIDS, but when ...
0
votes
1answer
34 views
Python: loading text with 3 columns of data
I have a text file with 3 columns of data I want to plot.
from numpy import *
import pylab
from mpl_toolkits.mplot3d import Axes3D
datalist = loadtxt("datagrid.txt")
x, t, u = datalist[:, 0, 0], ...
-5
votes
2answers
68 views
Check if Dictonary<string,object> exists in List<Dictionary<string,object>>? [closed]
I have a List that is defined as:
List<Dictionary<string,object>>()
This List gets populated in a foreach loop and basically contains property names and values from ProperyInfo.
In ...
0
votes
1answer
30 views
List is printing empty
I have a List in Java whose isEmpty() method returns false for some entries. Also when i check size for those entries it is One but when i print the List it is empty [].Is it because of whitespaces ...
0
votes
0answers
8 views
nested list always return all in hibernate Please help me
here is my .xml class that describe relation between both table
--------Parent Table Mapping-----------
<class name="Att" table="ATT" >
<id name="periodNo" type="int">
...
-2
votes
3answers
64 views
Python: Random Numbers into a List
Question: Create a 'list' called my_randoms of 10 random numbers between 0 and 100.
This is what I have so far:
import random
my_randoms=[]
for i in range (10):
...
0
votes
1answer
46 views
Passing values to a sourced file in R
Is there a way in R to pass the values of some variables, say strings, defined in a script to another script that is being sourced so that the latter can use them without having to declare them? Eg:
...
1
vote
3answers
74 views
Effective C# 2D lists
I am creating a State-Manager for a program. Each state will have a ID and a State class. I can add as many stats as I want by using an Add() function. Using a Change(ID) function will get change the ...
0
votes
1answer
89 views
Selenium grid connected node list
So I am setting up a hub and multiple nodes connect to it using selenium grid. And I would need to have a list of those connected nodes. Right now I am able to find out which node are running test, ...
0
votes
2answers
51 views
Mocking a list or List of Mock Objects
I have a class that uses a list of objects. How would you mock the list and why? Do you mock the List so that it returns Mock Objects when a list method is called. Or do you create an instance of the ...
1
vote
5answers
52 views
How can I select items from a list lower bound to upper bound?
lowerbound = (CurrentPage - 1) * 10;
upperbound = (CurrentPage * 10) -1;
I have an upper bound and lower bound two integers that specify what is the lowest and highest element between which ...
-1
votes
0answers
46 views
Python classes - why do my lists get over-written and not append
I am new to Python classes and am confused about the behavior of the mutable variables.
I have created a dictionary of classes of different county attributes, and that seems to work fine. However, ...
-1
votes
1answer
40 views
removeClass not working [closed]
Just a quick q regarding the jquery removeClass function.
I have a html list that goes as so:
<li class="selected" id="s-12312">
<li class="selected" id="s-12313">
<li ...
0
votes
1answer
17 views
Why does my custom wordpress loop behave weird?
I have made a custom theme, and some custom page templates.
Two of the templates have the same loop. They both list the sub-pages of the parent page.
Somehow after 5 sub-pages the loop decides to ...
145
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?
4
votes
5answers
125 views
The fastest way to find common elements at the beginning of 2 python lists?
What is the fastest way to find common elements at the beginning of two python lists? I coded it using for loop but I think that writing it with list comprehensions would be faster... unfortunately I ...
1
vote
1answer
61 views
Python: lists, bins, and sorting
I have a quite specific thing to do and do not know how to accomplish that:
I have two lists, x and y, of corresponding values (about 10k in each list).
First, I need to bin both lists according to ...
1
vote
2answers
57 views
Clojure - convert list into Java array
Is there any idiomatic way of converting Clojure list into Java array, other than first converting it to vector and using into-array (means, something other than (into-array (vec my-list)), as I don't ...
4
votes
4answers
48 views
python sum tuple list based on tuple first value
Suppose I have the following list tuples:
myList = [(0,2),(1,3),(2,4),(0,5),(1,6)]
I want to sum this list based on the same first tuple value:
[(n,m),(n,k),(m,l),(m,z)] = m*k + l*z
For myList
...
1
vote
1answer
84 views
working with large lists that become too big for RAM when operated on
Short of working on a machine with more RAM, how can I work with large lists in R, for example put them on disk and then work on sections of it?
Here's some code to generate the type of lists I'm ...
-2
votes
0answers
34 views
qt list removeat() it doesn't properly
I wrote a program and it takes random 5 value in each click and store in a qlist then I have another function which delete these random numbers one by one with each click action
as conclusion there ...
99
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 ...
-2
votes
3answers
42 views
C Compilation error: request for member ___ in something not a structure or union
I'm currently trying to create a hash table of strings. However in my search function I've been running into an error: request for member _ in something not a structure or union.. again
/*search ...
0
votes
1answer
34 views
Comparing items within the same set to eachother
I have a set of shapes and need to determine which shapes are intersecting which. I currently use two enhanced-for-loops (one within the other) but it is not working as expected. It seems to be only ...
0
votes
1answer
57 views
Have ConcurrentModificationException even with synchronized keyword used
I have a list my defined object that return from a network service ( network svc will update this list).
At a certain point of time, I want to render what I have already had in that this on my ...
2
votes
2answers
146 views
Haskell <<loop>>
With "getIndex" I want the index of the first sublist which length is > y
The Output is:
[[],[4],[4,3],[3,5,3],[3,5,5,6,1]]
aufgabe6: <<loop>>
why getIndex does not work?
import ...





