2
votes
3answers
66 views

How to find elements existing in two lists but with different indexes

I have two lists of the same length which contains a variety of different elements. I'm trying to compare them to find the number of elements which exist in both lists, but have different indexes. ...
1
vote
2answers
47 views

python find biggest free square in nested list

Ok, so I have to find the biggest "free square" in a grid where some spots are filled, for example, there's this grid: ###--- ###--- ###--- ---### ---### ---### Where "-" is a filled spot and ...
3
votes
3answers
81 views

Best way to merge and remove duplicates from multiple lists in Java

I have a situation where I will be receiving 2+ ArrayList<Widget> and I need to be able to merge all the lists and remove any duplicate Widget so that I wind up with only 1 ...
0
votes
1answer
91 views

Algorithm: Checking for conditions in 3D array

This one is hard to explain! Sorry for that, but here goes... I have a 3D array of some data [X][Y][Z], and I like to check for about 10 different combination conditions and keep only data when it's ...
2
votes
5answers
149 views

How to remove a pair of repeated occurrences in a list in c++? (keep elements that appear only once)

I've tried using unique but unique removes the duplicate only. What my program is suppose to do is for example the list contains 1,2,2,2,3,4,4. I am suppose to only remove the the pair of the number ...
4
votes
2answers
113 views

Don't skip lists have the same limitation as arrays?

Would I be right in saying, Skip Lists like arrays can be very efficient if one knows the 'n' (number of elements to be stored) beforehand? Maxlevel of a skip list is (log n + 1), and since I need ...
1
vote
3answers
95 views

Group Python list of lists into groups based on overlapping items

I have a list of lists and I am trying to group or cluster them based on their items. A nested list starts a new group if none of the elements are in the previous group. Input: paths = [ ...
1
vote
3answers
123 views

Find the optimal ordering of elements

I have a list of logos (up to 4 color) that need to be printed. Each logo requires a setup time to mix paints needed for that logo. If I can sort the data so that two logos that use the same colors ...
4
votes
1answer
67 views

Creating IP hierarchical list in PHP

I have a database table storing IP adresses, wich look like this: E_ID IP MASK I want to make it to look like this: E_ID Parent_ID IP MASK So that I can easily get my IP adresses tree: ...
-1
votes
3answers
116 views

Logic, How can it be done? [closed]

I need a loop that will identify all the different groups of 15 numbers that starts with the sequence 2,3,4,5. For example, the following random sequences are acceptable: ...
1
vote
4answers
101 views

Removing duplicates from one list by comparing with another list

I have a two lists of objects and I would like to remove the instances from one list which is there in other list. e.g. I have following two lists and suppose each letter represents the object. ...
-1
votes
2answers
139 views

Using a Sort algorithm to sort a list of strings

I'm was wondering if anyone can show me how to sort a list of strings using a sorting algorithm in alphabetical order? I know I can simply use List<string>.Sort() however it would be great to ...
0
votes
6answers
65 views

Why search a linked list?

I am reading "The Algorithm Design Manual" and it says that the three operations on a basic List are searching, insertion and deletion. Then it goes on to describe an algorithm in C which, once it ...
1
vote
2answers
86 views

Compressing a List when expecting runs of duplicate values, while maintaining index lookup

SHORT VERSION: I have a List object that contains a number of duplicate values (double's) that exist in runs of duplicate values interspersed with runs of changing values. I want to reduce the space ...
0
votes
2answers
83 views

How to create pairs form python dictionary keys

For example I have a dictionary dict my_dictionary= {'a': 20, 'c': 60, 'b': 10} In this case I have 3 keys from the dictionary. I would like to make pairs and store them as tuples in a list. For ...
0
votes
4answers
111 views

Efficient Java List Merging Algorithm

I have two Java Lists (as in the actual class), each of which has the elements of a numbered list and levels, expressed as String objects. Each line below is a separate string in the List. For ...
2
votes
2answers
125 views

most efficient algorithm to get union of 2 ordered lists

I need to find the union of 2 descending ordered lists (list1 and list2), where the union would be each element from both lists without duplicates. Assume the list elements are integers. I am using ...
5
votes
1answer
135 views

data structure for indexing big file

I need to build an index for a very big (50GB+) ASCII text file which will enable me to provide fast random read access to file (get nth line, get nth word in nth line). I've decided to use ...
0
votes
1answer
156 views

Sort algorithm to sort a list of strings (C#)

I'm doing this assignment for uni and the requirement is that I use any sorting algorithm to sort a List in alphabetical order (case insensitive). Basically say if the list contains some strings for ...
5
votes
6answers
104 views

How to combine multiple lists with custom sequence

Not sure if there's a algorithm to describe this problem but are there any elegant methods to combine the list in a custom sequence. For example: List<string> list1 = new List<string>(); ...
1
vote
1answer
293 views

Finding largest and second largest of n numbers in average n + log n comparisons

We know that the easy way to find the smallest number of a list would simply be n comparisons, and if we wanted the 2nd smallest number we could go through it again or just keep track of another ...
1
vote
2answers
91 views

How to compare elements in a list

I'm having some trouble with an algorithm (To find the max and min values), not the algorithm itself but the implementation, let me explain: Let's say the list is n = [0,1,1,2,3,5,8,13,-1,99]; ...
0
votes
2answers
321 views

copy a linked list with next and random pointer, only read privileges are given on list.

I need to copy a linked list with next and random pointer.The next pointer as usual points to the next element in the linked list and the random pointer might point to any of the other node or even on ...
-3
votes
2answers
237 views

Prime number algorithm in C++ [closed]

I wrote the following prime number algorithm to obtain the largest prime less than 100 (it only performs modulo checks for previously-added primes to improve efficiency. #include <iostream> ...
3
votes
2answers
103 views

Looking for a more efficient way to reorganize a massive CSV in Python

I've been working on a problem where I have data from a large output .txt file, and now have to parse and reorganize certain values in the the form of a .csv. I've already written a script that input ...
0
votes
2answers
69 views

List: Detecting switches from less than zero to greater than zero

is there any existing linq function or similiar functions to detect how often values in an ordered list changes from less than zero to greater than zero? As example, values: 5 2 -2 -5 8 <--- ...
0
votes
1answer
69 views

Create all posible combinations from a list

I've got a list [ [[[u'ANC'], [u'DEN', u'SFO'], [u'CHI', u'CLE', u'DEN', u'EWR', u'HOU', u'WAS'], [u'GSP']]], [[[u'ANC'], [u'PDX', u'SEA'], [u'CHI', u'CLE', u'DEN', u'EWR', u'HOU', u'LAX', u'SFO', ...
1
vote
2answers
42 views

How to organise specially formatted text to a list (on python)

I've got data with flight routing codes. It has lot's of strings like this: routing = 'PBI-FLL/FMY/JAX/MIA/ORL-PNS/TPA-SRQ-CLE/CHI/HOU/WAS-DEN-ELP' I need to get lists with this strings like this: ...
2
votes
2answers
203 views

Sort and update list of objects based on variable change

I am working on a algorithm which will solve a problem I have, but I am finding myself a little stuck. Here is the scenario: I have an object which contains a variable called order. public class ...
0
votes
2answers
107 views

F# Conversion from tuple to enumerated list

The code below stems from work on a Euclidean Distance algorithm. The color table was simply a vehicle to test the algorithm. It is perhaps reinventing the wheel, however it is useful in itself. ...
0
votes
3answers
111 views

I need an algorithm to look through 3 lists and find unique items

I've been scratching my head for a couple of hours and could use some help... I have 3 lists of objects. Each list can contain the same objects (but doesn't have to). I want an algorithm to test if ...
-3
votes
2answers
96 views

Python: Find the shortest distance to get to another index in a list assuming you can go backwards [closed]

How would you find the shortest path between letters in a list, assuming you can go backwards and end up on the other side of the list, Pacman Style letters = ['a', 'd', 'e', 'l', 's'] ...
2
votes
2answers
88 views

Algorithm to match three sorted lists

So I've been trying to solve this for some hours now, but apparently there's still something missing. Maybe I'm thinking the wrong way, but I think it is a very complex problem: I have three lists ...
0
votes
1answer
70 views

What is Dual Sort

can someone please explain exactly what a dual sort algorithm is and how it works? I've searched the web and haven't been able to find any info on it. I have a homework assignment where im suppose to ...
6
votes
2answers
444 views

Operations on two Lists

let me start with some background. Let's say I have this list: interactions = [ ['O1', 'O3'], ['O2', 'O5'], ['O8', 'O10'] ['P3', 'P5'], ...
18
votes
7answers
444 views

Constructing the largest number possible by rearranging a list

Say I have an array of positive whole integers; I'd like to manipulate the order so that the concatenation of the resultant array is the largest number possible. For example [97, 9, 13] results in ...
-1
votes
1answer
60 views

Java merge list from database with list from excel

I would like to merge two lists of objects in Java. One is a list of objects from a database and the second list is from Excel. The first list of objects contains data like: ...
3
votes
2answers
137 views

Optimal way of iterating through a list of lists to maximise unique outputs

I have got a list of lists where the content is a vector of characters. For example: yoda <- list(a=list(c("A","B","C"), c("B","C","D")), b=list(c("D","C"), c("B","C","D","E","F"))) This is a ...
-1
votes
1answer
92 views

Make a new list from three lists elements in a specific element order

Say I have three lists: a = {a, b, c, d, e} b = {A, B, C} c = {aa, bb, cc, dd} Now I need to take 3 elements from each list and insert them into a new list, from list a to c. So the new ...
3
votes
6answers
156 views

In C++, how can I delete all zeros except for x of them in every run of consecutive zeros within a list?

For every run of x or more consecutive zeros in a list in C++, I would like to delete all zeros in the run except for x of them. If x = 0, then delete all zeros. I was thinking of a C++ function that ...
4
votes
1answer
41 views

Decomposing a true/false vector into its parts

I am wondering whether this this is an established computer science problem and if there is any polynomial time solution or approximation Suppose I have some list X made up of true and false values ...
1
vote
1answer
41 views

How do I label a list of lists sequentially?

Suppose I have a sequence and a list of lists: ["A" "B" "C" "D" "E"] [[:1 :2][:3 :4 :5]] And I'd like to use the sequence to label each element of the list of lists: [["A" :1 "B" :2] ["C" :3 "D" :4 ...
-5
votes
1answer
205 views

Java List contains method [closed]

I was searching through the java ArrayList source code to see what happens when I convert the list to a array. I came across the method contains which I've used allot and know about and my first ...
1
vote
3answers
163 views

Maintain a sorted list with performance

Summary of my question: I need a list that can quickly be iterated and sorted (either by sorting method or adding/removing object). I'm coding a game in which there are a lot of "collision zones", ...
1
vote
2answers
97 views

Generate all lists of size n, such that each element is between 0 and m (inclusive)

Generate all lists of size n, such that each element is between 0 and m (inclusive). There are (m+1)^n such lists.
2
votes
2answers
114 views

Python - trouble iterating through nested list

I'm trying to bruteforce through some list iterations in python (I'm a pynoob) and I can't seem to understand why this is such an issue. My data structure looks like this: pprint.pprint(list) ...
2
votes
3answers
121 views

best way to diff two lists and get net changes

I have an object and two lists as follows: public class MyObject { public int Key; public DateTime Day; public decimal Value; } List<MyObject> ...
3
votes
3answers
254 views

How to count distinct values in a list in linear time?

I can think of sorting them and then going over each element one by one but this is nlogn. Is there a linear method to count distinct elements in a list?
2
votes
1answer
209 views

finding minimum in a linked list in optimal method

I came by this problem where we are asked to store a string and a no. associated with it and we are supposed to remove the minimum no.(and its string) from the list and also remove the no.s(and ...
3
votes
3answers
98 views

what List[i]++; is supposed to do?

I need to understand algorithm called bead sort. I found a c++ implementation of the algorithm however i don't fully understand it. What confuses me the most is what happens at this line: ...

1 2 3 4 5 6