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
10 views
Expression Engine categories channel outputting empty list
I have a problem with outputting categories in to a list.
It seems to create another ul(one for the channel:categories) within the my ul, and also creates empty lists before each list.
I used the ...
1
vote
3answers
60 views
Python list operation
I have two lists ListA and ListB as follow:
ListA=['1','1','2','2','2','3','4','4','5','5','5','5']
ListB=['1','5']
I am trying to come up with List C which has the same length as List A but ...
0
votes
3answers
46 views
How to delete several elements from list at once in c++?
What program does is as follows:
The list contains product information which includes product id, name, price etc.
User enters product id
Check the id if it already exist in a list
So if the id ...
-2
votes
3answers
89 views
How to compare 2 list by characters content and its correspondents double values?
I have 2 lists: a string list and a double list with same length and with same index of correspondence. I need to compare all the strings, find the indexes of the list that has the same characters, ...
-3
votes
1answer
65 views
Text document to dictionary Python
Okay, I have a text file that "relationships.txt" that has the following inside:
Elizabeth: Peter, Angela, Thomas
Mary: Tom
Angela: Fred, Alison
Alison: Beatrice, Dick, Harry
mother Elizabeth
mother ...
1
vote
1answer
56 views
Adding elements to global list object in scala
Allright guys, pardon me if this question has already been asked. Yet another Scala newbie question. So for example if I want to have a global List object which can be used as a place holder ...
1
vote
4answers
96 views
Python list reduction
I'm working on a continuously learning focused web crawler to find news articles related to specific crisis and tragedy events that happen around the world. I am currently working on making the data ...
0
votes
1answer
35 views
Prolog: How to find a specific element in a list?
I have to implement this predicate:
predicate(+connections, +[index,position], -leftConnections);
The connections variable is a list which looks like this:
(conn(symbol1, element11, element21), ...
0
votes
2answers
39 views
Adding an element to a singlechained linked list
Okay, the solution is probably very easy but I don't understand it at the moment.
Code:
ListElem<T> first;
int size = 0;
public void add(T value) {
if (value == null)
return;
...
0
votes
2answers
49 views
Retrive a date from a database in three dropdown list
I need to retrive a date from database in three dropdown lists.
Mysql & PHP code:
if (mysqli_connect_errno()) {
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
else {
$sql = ...
0
votes
0answers
97 views
Haskell - list comprehension can't enumerate N × N
I have to write a function which returns a list of all pairs (x,y) where x,
y ∈ N , and:
x is the product of two natural numbers (x = a • b, where a, b ∈ N) and
x is really bigger than 5 but really ...
1
vote
4answers
47 views
naming a list when returning values from data.table
When returning items to data.table, it would be nice if they automatically took on the names of the variables. How does one do this? This is what I mean:
require(data.table)
x = data.table(a=1:10, ...
1
vote
3answers
60 views
Filter files in a directory according to a date in the file name
I need to filter files in a directory based on a date in the file name.
The name has four groups of numbers:
9999.99999.201305021219.99999999.txt
When there is more than one file with the second ...
0
votes
0answers
22 views
Play 2.1.1 Bind a List<Class> from form
I saw some similar questions, but I couldn't really understand any answers.
I have a problem with getting a list of from a form. I've been doing it like this:
@Entity
public class Foo extends Model ...
-4
votes
0answers
34 views
How to make a hashtable in C with the keys of type linked list and long? [closed]
SO I currently have a struct with keys of type long and a linked list
typedef struct Node{
long key;/*book id*/
ListRef data; /*type linked list*/
struct Node* next;
struct Node* ...
1
vote
1answer
23 views
QuickSort on a LinkedList in VBA
I've unfortunately inherited some VBA code which uses LinkedLists in VBA but nothing is sorted, and needs to be sorted.
LinkedList example:
http://support.microsoft.com/kb/166394
I'm trying to do a ...
0
votes
3answers
66 views
Haskell - List Comprehension - get Input-Elements
I have some problem with list comprehension, if the input is a list.
In these all III excercises it's not allowed to use: map, filter and concat!!!
Part I
Requirements:
A funktion f1 gets a list ...
0
votes
1answer
17 views
prolog delete head from a clause
I am using yap.
Suppose I have this scenario:
p(x,y) :- q(x), f(x,y), g(x).
I need to put the body of the predicate in a list using the command listing(p).
Expected output should be:
[q,f,g].
How ...
3
votes
5answers
106 views
What is the best way to iterate over a python list, excluding certain values and printing out the result
I am new to python and have a question:
I have checked similar questions, checked the tutorial dive into python, checked the python documentation, googlebinging, similar Stack Overflow questions and a ...
0
votes
0answers
7 views
Eclipse: List All Search Results When Viewing Results As A List?
Eclipse has a "Show As List" option for ctrl+H search ( multi file ). You get this option by going to the far right corner of the Search View and clicking the triangle icon.
The list is composed of ...
3
votes
1answer
25 views
How to get and order rows from different tables with a limit and offset?
I'm creating web services to return a list of chats and notifications. The user can send as input the page number and the number of items to display per page, but 2 types of objects can be returned ...
-1
votes
1answer
48 views
Convert DataModel to List in Java
Can anybody tell me if its possible to convert a DataModel to an ArrayList?
And how can I do it? Please I have to know it as soon as possible!!!
I can convert the ArrayList to ListDataModel using ...
0
votes
1answer
50 views
How to get checkboxlist item value
This is how I am adding values and text to my checkboxlist in c#
private void populateFruitList() {
string selectCommand = "SELECT FruitName, FruitID FROM Fruit_Crate";
using (SqlDataSource ...
0
votes
3answers
56 views
List of empty string returns non-zero length in python [duplicate]
I have a list of strings returned after command execution, split on '\n'.
listname = output.decode('utf8').rstrip().split('\n')
When I print using print(listname), I get
['']
Clearly It's a list ...
6
votes
3answers
138 views
Better way for Comparing List in c#
I have two list say
List<string> names; and List<Student> stud;
Student Class has 3 properties
ID
Name
Section
Now i want to loop through List<string> and compare each item ...
0
votes
0answers
53 views
implementing list insert first in generic List
ListResult listInsertFirst(List list, ListElement element) {
NULL_ARG(list, LIST_NULL_ARGUMENT);
Node first = elementCopy(list, element);
NULL_ARG(first, LIST_OUT_OF_MEMORY);
...
1
vote
2answers
42 views
How can I extract a list of Tuple from a specific table with Entity Framework / LINQ?
I need to extract a list of couple 'ID'/'Name' from a large table in C# .NET with Entity Framework.
I try this request :
List<Tuple<int, string>> list = (from res in db.Resource
...
1
vote
1answer
15 views
How can I invoke *this* on a JRBeanCollectionDataSource?
I am passing a list of images to my report. I want to render it inside a List object in the report.
I have used JasperReports lists before and I'm aware that I can reference each field of an element ...
2
votes
2answers
30 views
Create list with depth equal 2
I have a list with a depth equal 2. I would like to subscript that list as described in the following example:
my.list<-list(
a=list(
a1=1:10,
a2=11:20),
b=list(
b1=21:30,
...
0
votes
0answers
11 views
Spring Merge List (Prepend not Append)
<bean id="parent" class="org.springframework.beans.factory.config.ListFactoryBean">
<property name="sourceList">
<list>
<value>X</value>
...
2
votes
3answers
74 views
compare file line by line python
What is the most elegant way to go through a sorted list by it's first index? Input:
Meni22 xxxx xxxx
Meni32_2 xxxx xxxx
Meni32_2 xxxx xxxx
Meni45_1 xxxx xxxx
Meni45_1 xxxx xxxx
Meni45 xxxx xxxx
...
2
votes
3answers
55 views
Joining two list whereby the last element of list “A” and first element of list “B” are concatenated
I have two lists that I am concatenating using listA.extend(listB).
What I need to achieve when I extend listA is to concatenate the last element of listA with the first element of listB
an ...
0
votes
2answers
42 views
rbind all dataframes in a list of lists by name [duplicate]
I'd like to rbind all a dataframes in ALIST - how would I do this?
alist <- list(a = data.frame(1:3),
b = data.frame(4:6),
a = data.frame(7:9))
(ALIST <- ...
0
votes
1answer
49 views
How can we add new list so that they are in the same row but different column with the dict in table html?
Here is my codes for the old list :
from collections import defaultdict
hello = ["hello","hi","hello","hello"]
def test2(strList):
d = defaultdict(int)
for k in strList:
d[k] += 1
...
2
votes
3answers
64 views
sorting list of dictionnaries in python
i have this list :
L = [{'status': 1, 'country': 'France'}, {'status': 1, 'country': 'canada'}, {'status': 1, 'country': 'usa'}]
How to sort this list by country (or by status) elements, ASC/DESC.
0
votes
7answers
74 views
Add elements in ArrayList in more readable way
I have below code snippet to add the elements in ArrayList
List <Integer> myList = new ArrayList();
myList.add(1);
myList.add(2);
myList.add(3);
myList.add(4);
I am looking for more readable ...
-4
votes
2answers
32 views
Search through android app [closed]
I'm trying to create android app that contains lists where I want to search in it using the search bar and also search in the app features. In other words, I'm creating app that shows IT courses in a ...
2
votes
1answer
38 views
Converting Dataframe to LIST
I wish to convert a dataframe to list. Here's an example dataframe:
colname name age address
1 John 22 Singapore
2 James 44 India
3 Jessie 21 ...
-1
votes
4answers
102 views
Python: Find a value in list [closed]
def sum_points(point_list):
sol = []
sum = 0.0
for x in point_list:
sum += x
sol.append(sum)
return sol
def main():
with open("example.json") as f:
for line ...
0
votes
3answers
78 views
How to find an Index of a string in a list
So what I am trying do is retrieve the index of the first item, in the list, that begins with "whatever", I am not sure how to do this.
My attempt (lol):
List<string> txtLines = new ...
1
vote
1answer
30 views
OverWrite an existing list in CSV files Python
I have a csv files with player attributes:
['Peter Regin', '2', 'DAN', 'N', '1987', '6', '6', '199', '74', '2', '608000', '', '77', '52', '74', '72', '58', '72', '71', '72', '70', '72', '74', '68', ...
5
votes
1answer
72 views
Dereferencing lists inside list in Python
When I define a list in a "generic" way:
>>>a=[[]]*3
>>>a
[[],[],[]]
and then try to append only to the second element of the outer list:
>>>a[1].append([0,1])
...
0
votes
1answer
32 views
Slide menu with javascript
I'm trying to create a new menu with job listings for my wordpress page, like the one on this page: http://www.resume.se/, where it says Senaste jobben (sorry for it being in Swedish, hope you get ...
0
votes
3answers
59 views
Parallelize a list consolidation in Python
I have a sorted list of "box definitions" that I would like to consolidate. The list looks something like:
big_list = [\
# ...
# ...
[3, 4, 5, 4, 5, 6, 65],\
[3, 4, 5, 4, 5, 6, 60],\
[3, 4, 5, 4, 5, ...
0
votes
4answers
59 views
Python: Append a list to an existing list assigned to a key in a dictionary?
Lets say I have a dict with key= 'keys'
>>> keys
'taste'
After a few lines..output
>>> {'taste': ('sweet', 'sour', 'juicy', 'melon-like')}
This code snippet
from collections ...
-1
votes
0answers
12 views
Create a list of tuples with specific attributes in Haskell [closed]
this is my first post here.
filter_2 x a b y c = if ((x == a*b, a <- [1..], b <- [1..], x <- [6..499]) && (y == c*c, c <- [1..999]) && (x `mod` y == 0)) then True else ...
7
votes
1answer
117 views
Python - comparing elements of list with 'neighbour' elements
This may be more of an 'approach' or conceptual question.
Basically, I have a python a multi-dimensional list like so:
my_list = [[0,1,1,1,0,1], [1,1,1,0,0,1], [1,1,0,0,0,1], [1,1,1,1,1,1]]
What I ...
-2
votes
2answers
68 views
How do I retrieve data from a list<> containing class objects
I want to retrieve data from a list I created that contains class objects via a foreach but I'm not able to.
Can somebody please tell me what's missing in my code?
I have a class Recipes.cs that ...
2
votes
1answer
67 views
How to add listener on ArrayList in java
I want to create my own implementation of ArrayList in java, that can listen when the list is changing and to do action when this happens.
From what I have read, I understand that I can't extend ...
2
votes
6answers
87 views
split a list into three lists with a stepsize and a starting point
I have a list which looks like below.
list = [1, 2, 3, 4, 5, 6, 7, 8, 9 .....]
and i want to split it into three lists which will have below values.
first_list = [1, 4, 7, ...]
second_list = [2, ...

