1
vote
2answers
65 views

How to combine python lists, with shared items, into new lists

I am new to python and I hit a roadblock. I have a python list that contains a single list on each line. Basically, I would like to combine lists that share values among lists. For example, below ...
0
votes
0answers
33 views

Using union and intersection method in a HashSet

I am having trouble using my custom set,MySet, using the basic function of union and intersecting. The program compiles without error but just returns an empty set. Anybody see where the problem is? ...
3
votes
2answers
114 views

Computing unique intersections of subsets

Given a set S = {si : {zj : z ∈ N} }, what is a time-efficient algorithm for computing the unique sets of intersections of the subsets of S? For background, I am dealing with several versions of ...
2
votes
3answers
71 views

Algorithm model for Intersection of several sets

My question is, how can we apply intersection for 5~7 sets. Suppose each set having set of elements. please help me in creating an algorithm for this and what will be the complexity of this process.
3
votes
4answers
348 views

Intersection algorithm for two unsorted, small array

I'm looking for an algorithm for intersection of two small, unsorted array in very specific condition. Type of array item is just integer or integer-like type. Significant amount of time (about ...
1
vote
2answers
57 views

compute manually in php file or through mysql?

Excuse me if this has been asked before, but I tried looking for something similar but couldn't find anything. I have three tables: users, hobbies and user_hobbies (linking the first two). I want to ...
0
votes
1answer
131 views

Set intersection in a loop

My function search_intersection receive a set <set<string> >& inter_section. I want get the intersection over all subsets in inter_section. For example if: inter_section = { { lion, ...
3
votes
1answer
246 views

Intersection of two strings/ sets

As coming from python I'm looking for something equivalent to this python code (sets) in delphi5: >>> x = set("Hello") >>> x set(['H', 'e', 'l', 'o']) >>> y = set("Hallo") ...
4
votes
9answers
260 views

How to intersect two sets of longs that don't fit into memory?

I've got an interesting problem. I want to intersect two Sets of Longs in Java, with each set having 1B members - this is 4GB per set. This will not fit into memory on the server that I need to run it ...
4
votes
1answer
135 views

Check if map in C++ contains all the keys from another map

I am planning to use two maps in C++, of type: std::map<char, Node>, where Node is a custom class. Suppose I have two maps, m1 and m2 of the type above, I want to find out whether m1 contains ...
0
votes
1answer
52 views

Intersection - Envelope

I have Envelope[][] extents = new Envelope[][]; construction. Each envelope has MinX, MaxX, MinY and MaxY properties and represents one tile of a grid (bottom-left and top-right point). Now I have ...
2
votes
2answers
506 views

Python: Jaccard Distance using word intersection but not character intersection

I didn't realize the that Python set function actually separating string into individual characters. I wrote python function for Jaccard and used python intersection method. I passed two sets into ...
7
votes
4answers
321 views

Python Easiest Way to Sum List Intersection of List of Tuples

Let's say I have the following two lists of tuples myList = [(1, 7), (3, 3), (5, 9)] otherList = [(2, 4), (3, 5), (5, 2), (7, 8)] returns => [(1, 7), (2, 4), (3, 8), (5, 11), (7, 8)] I would ...
0
votes
0answers
43 views

Set representation in relational database

I have problem with obtaining data from sql relational database fast enough. I have shedules, which are lists of lectures, that are taken by some person. And list (table) of all possible lectures, ...
2
votes
2answers
239 views

Intersection of variable number of lists

I define intersection of two lists as follows: def intersect(a, b): return list(set(a) & set(b)) For three arguments it would look like: def intersect(a, b, c): return (list(set(a) & ...
1
vote
1answer
260 views

Python multiple intersection

I reimplemented the set in python but i have some problem with multiple intersection.... I followed the book Learning Python but i have problem with my code class Set: def ...
1
vote
1answer
569 views

Django filter on queryset intersection?

class Item(models.Model): ... class ItemSet(models.Model): items = models.ManyToManyField(Item, related_name="itemsets") I have a list of ItemSets. I want to find all Item objects where the ...
2
votes
3answers
227 views

python set intersection with object sets

I am working with amazon boto and I have 2 lists. List 1 contains Instance objects. List 2 contains InstanceInfo objects. Both objects have a attribute called id. I need to get a list of Instance ...
2
votes
1answer
276 views

Looking for an ultrafast data store to perform intersect operations

I've been using Redis for a while as a backend for Resque and now that I'm looking for a fast way to perform intersect operation on large sets of data, I decided to give Redis a shot. I've been ...
0
votes
3answers
308 views

Beginner python set intersection error

rare = (["word1","word4","word5"]) freq = (["word1","word2","word3"]) unique = rare.intersection(freq) print unique error: AttributeError: 'list' object has no attribute 'intersection' Am I not ...
2
votes
2answers
144 views

Is there a better way to find set intersection for Search engine code?

I have been coding up a small search engine and need to find out if there is a faster way to find set intersections. Currently, I am using a Sorted linked list as explained in most search engine ...
2
votes
1answer
436 views

create intersection from two or more 2d numpy arrays based on common value in one column

I have 3 numpy recarrays with following structure. The first column is some position (Integer) and the second column is a score (Float). Input: a = [[1, 5.41], [2, 5.42], [3, 12.32], ...
1
vote
2answers
4k views

Is there a way to calculate the intersection of two sets? [duplicate]

Possible Duplicate: Efficiently finding the intersection of a variable number of sets of strings Say, have two Hashset, how to calculate the intersection of them? Set<String> s1 = ...
0
votes
3answers
783 views

Python: Import Exception

Is it possible to not import just one module while doing from ~ import * ?? Because I need a lot of modules from that particular library that I use in my class but it looks like it used the same ...
11
votes
2answers
662 views

Calculate if two infinite regex solution sets don't intersect

In calculate if two arbitrary regular expressions have any overlapping solutions (assuming it's possible). For example these two regular expressions can be shown to have no intersections by brute ...
7
votes
1answer
870 views

In Java, how do I filter the elements of a map based on a subset of its keys without iterating through the entire thing?

I have a Map<String, ArrayList> and a Set<String>. Is there a way to "intersect" the keys of the map with the set of strings such that only the pairs with the given key remain, without ...
10
votes
4answers
574 views

Efficient set intersection - decide whether the intersection is larger than k

I am faced with a problem where I have to calculate intersections between all pairs in a collection of sets. None of the sets are smaller than a small constant k, and I'm only interested in whether ...
5
votes
5answers
1k views

Set difference in C++

If I know that one set is a subset of another set and I would like to find the intersection, what's the most efficient way to do this: ex. PSEUDO CODE > set<int> set1 = {1 2 3 4 5 6 7 8 9 ...
5
votes
3answers
4k views

How to intersect multiple sets?

I have this list: private List<Set<Address>> scanList; So my list contains multiple scans as you can see. After each scan I add new set into the list. After all scans are finished I ...
3
votes
3answers
838 views

Set_union/Set_intersect for more than two sets in c++

I know those commands are for two sets. Does there any simple and fast way to do this for more then two sets. I think I can use some kind of loop for this but maybe there are better way. Thank you
4
votes
2answers
3k views

Python -Intersection of multiple lists?

I am playing with python and am able to get the intersection of two lists: result = set(a).intersection(b) Now if d is a list containing a and b and a third element c, is there an built-in function ...
1
vote
4answers
811 views

set / line intersection solution

I have two lists in python and I want to know if they intersect at the same index. Is there a mathematical way of solving this? For example if I have [9,8,7,6,5] and [3,4,5,6,7] I'd like a simple ...
2
votes
5answers
2k views

Efficiently finding the intersection of a variable number of sets of strings

I have a variable number of ArrayList's that I need to find the intersection of. A realistic cap on the number of sets of strings is probably around 35 but could be more. I don't want any code, just ...
1
vote
1answer
254 views

Using ETS Select To Form An Intersection

i have the following ets structure: SomeTable = ets:new(sometable, [bag]). ets:insert(SomeTable, [ {set1,item1}, {set1,item2}, ...
14
votes
4answers
1k views

Quickest algorithm for finding sets with high intersection

I have a large number of user IDs (integers), potentially millions. These users all belong to various groups (sets of integers), such that there are on the order of 10 million groups. To simplify my ...
2
votes
3answers
1k views

Can set_intersection be used with hash_set in C++?

I am calculating intersection, union and differences of sets. I have a typedef of my set type: typedef set<node_type> node_set; When it is replaced with typedef hash_set<node_type> ...
1
vote
3answers
4k views

Getting Union, Intersection, or Difference of Sets in C++

I have a couple questions about how to use C++ sets (std::set) Is there a way to get the union, intersection, or difference of two C++ sets? (It's pretty easy to write my own functionto do that but ...
37
votes
13answers
32k views

Efficient set intersection algorithm

Given two lists (not necessarily sorted), what is the most efficient non-recursive algorithm to find the intersection of those lists?