Tagged Questions
The intersection tag has no wiki summary.
33
votes
7answers
29k views
Python - Intersection of two lists
I know how to get an intersection of two flat lists:
b1 = [1,2,3,4,5,9,11,15]
b2 = [4,5,6,7,8]
b3 = [val for val in b1 if val in b2]
or
def intersect(a, b):
return list(set(a) & set(b))
...
23
votes
12answers
16k 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?
14
votes
5answers
1k views
The opposite of Intersect()
Intersect can be used to find matches between two collections, like so:
// Assign two arrays.
int[] array1 = { 1, 2, 3 };
int[] array2 = { 2, 3, 4 };
// Call Intersect extension method.
var intersect ...
12
votes
5answers
3k views
Ray-box Intersection Theory
I wish to determine the intersection point between a ray and a box. The box is defined by its min 3D coordinate and max 3D coordinate and the ray is defined by its origin and the direction to which it ...
11
votes
4answers
945 views
Checking if two cubic Bézier curves intersect
For a personal project, I'd need to find out if two cubic Bézier curves intersect. I don't need to know where: I just need to know if they do. However, I'd need to do it fast.
I've been scavenging ...
11
votes
4answers
712 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 ...
11
votes
5answers
7k views
How to find the intersection point between a line and a rectangle?
I have a line that goes from points A to B; I have (x,y) of both points. I also have a rectangle that's centered at B and the width and height of the rectangle.
I need to find the point in the line ...
10
votes
4answers
358 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 ...
9
votes
6answers
1k views
Set of efficient 3D intersection algorithms
Anyone know a source, website where I can get some good implementations of 3D intersection algorithms, like
intersection of sphere and sphere
sphere/ellipsoid
sphere/cuboid
ellipsoid/ellipsoid
...
9
votes
4answers
1k views
Generate new polygons from a cut polygon (2D)
I'm stuck with this little problem and my algorithm to solve this doesn't hold for all cases. Does anybody has an idea how to solve this?
Here's an example polygon:
Formal description
We have a ...
9
votes
9answers
5k views
How to intersect two polygons?
This seems non-trivial (it gets asked quite a lot on various forums), but I absolutely need this as a building block for a more complex algorithm.
Input: 2 polygons (A and B) in 2D, given as a list ...
8
votes
1answer
194 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 ...
8
votes
2answers
707 views
Determine the area of the intersection of two rectangles
I have two rectangles, each identified by a set of four coordinates. I've read up on how to see whether they intersect, but how can I calculate the area of the intersection? The rectangles are not ...
8
votes
10answers
5k views
Compute the area of intersection between a circle and a triangle?
How does one compute the area of intersection between a triangle (specified as three (X,Y) pairs) and a circle (X,Y,R)? I've done some searching to no avail. This is for work, not school. :)
It ...
8
votes
5answers
2k views
Java: Is there an easy, quick way to AND, OR, or XOR together sets?
That is, if I had two or more sets, and I wanted to return a new set containing either:
All of the elements each set has in common (AND).
All of the elements total of each set (OR).
All of the ...
7
votes
2answers
182 views
Drawing outline of intersecting circles
I have a set of points and each one has an area of "influence" or essentially a radius. I would like to be able to draw each one of these influence circles for all the points as a simple circular ...
7
votes
5answers
109 views
.NET Ascertaining mouse is on line drawn between two arbitrary points
I have an arrow drawn between two objects on a Winform.
What would be the simplest way to determine that my mouse is currently hovering over, or near, this line.
I have considered testing whether ...
7
votes
1answer
254 views
Good acceleration structure for ray sphere tests with spheres that move
I'm looking for the proper acceleration structure to do ray-sphere intersection tests (in a game). the following conditions apply:
-there are arround 100 spheres and 100 rays to test against each ...
7
votes
4answers
415 views
efficiently knowing if intersection of two list is empty or not, in python
Suppose I have two lists, L and M. Now I want to know if they share an element.
Which would be the fastest way of asking (in python) if they share an element?
I don't care which elements they share, ...
7
votes
10answers
6k views
Efficient maths algorithm to calculate intersections
For a game I am developing I need an algorithm that can calculate intersections. I have solved the problem, but the way I have done it is really nasty and I am hoping someone here might have a more ...
6
votes
4answers
2k views
Java- Intersection point of a Polygon and Line
Is there any function that will give me the intersection point of a Polygon and Line2D? I have a Polygon and a line segment that I know intersect I want the actual value of the intersection point ...
6
votes
4answers
307 views
Test if lists share any items in python
I want to check if any of the items in one list are present in another list. I can do it simply with the code below, but I suspect there might be a library function to do this. If not, is there a ...
6
votes
5answers
1k views
How do I intersect two lists in OCaml?
When I have two lists in OCaml, for example
e1 = [3; 4; 5; 6; 7]
and
e2 = [1; 3; 5; 7; 9]
Is there an efficient way to get the intersection of those two lists?
I.e.:
[3; 5; 7]
Because I don't ...
6
votes
3answers
2k views
LINQ: Find all intersecting data, not just the unique values
I thought that I understood Intersect, but it turns out I was wrong.
List<int> list1 = new List<int>() { 1, 2, 3, 2, 3};
List<int> list2 = new List<int>() { 2, 3, 4, 3, 4};
...
6
votes
14answers
8k views
Fast intersection of sets: C++ vs C#
On my machine (Quad core, 8gb ram), running Vista x64 Business, with Visual Studio 2008 SP1, I am trying to intersect two sets of numbers very quickly.
I've implemented two approaches in C++, and one ...
5
votes
1answer
81 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 ...
5
votes
1answer
81 views
bash--instersection of two files based on a specific columns?
I want to do the following and would really appreciate if someone can help me accomplish this:
I have 2 tab-delim files named File1.txt and File2.txt(shown below).
If the 2nd column (integer) in ...
5
votes
2answers
293 views
How do negative-sized rectangles intersect?
Can someone explain why negatively sized Rectangles intersect the way they do?
var r = new Rectangle(0, 0, 3, 3);
var r0 = new Rectangle(0, 0, -1, -1);
var r1 = new Rectangle(1, 1, -1, -1);
var r2 ...
5
votes
4answers
521 views
Infinite cone surface * AABB intersection testing
I'm trying to discover a faster algorithm for testing whether an [EDIT: axis-aligned] conical surface intersects the volume of an axis-aligned bounding box.
The current algorithm I developed is as ...
4
votes
3answers
73 views
Non-unique C++ unsorted intersection algorithm
I have been trying to come up with a way to write an efficient algorithm to perform an unsorted intersection on two vectors/arrays, but with no luck. I am working with one large non-unique array ...
4
votes
4answers
224 views
C# fastest intersection of 2 sets of sorted number
I'm calculating intersection of 2 sets of sorted numbers in a time-critical part of my application. This calculation is the biggest bottleneck of the whole application so I need to speed it up.
I've ...
4
votes
3answers
194 views
Finding where two linear fits intersect in R
I have two linear fits that I've gotten from lm calls in my R script. For instance...
fit1 <- lm(y1 ~ x1)
fit2 <- lm(y2 ~ x2)
I'd like to find the (x,y) point at which these two lines (fit1 ...
4
votes
5answers
267 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 ...
4
votes
1answer
206 views
Graphics - How may I know if a line is visible onscreen taking account its width
I'm doing some core graphics, and I wonder how I may know if a line will have some parts of it visible on screen.
Let's take a line going from x-5, y3 to x2, y-7. If it's 1 pixel wide, nothing will ...
4
votes
2answers
374 views
JavaScript Merge Intersecting Rectangles
I need a way to merge an array of rectangle objects (objects with x,y,w,h properties) only if they intersect. So for example:
merge([{x:0, y:0, w:5, h:5}, {x:1, y:1, w:5, h:5}])
would return: [{x:0, ...
4
votes
2answers
371 views
Render only the segment/area of a circle that intersects the main circle
I absolutely love maths (or 'math' as most of you would say!) but I haven't done it to a level where I know the answer to this problem. I have a main circle which could have a centre point at any x ...
4
votes
2answers
4k views
Efficient intersection of two List<String> in Java?
Question is simple:
I have two List
List<String> columnsOld = DBUtils.GetColumns(db, TableName);
List<String> columnsNew = DBUtils.GetColumns(db, TableName);
And I need to get the ...
4
votes
4answers
2k views
2d game : fire at a moving target by predicting intersection of projectile and unit
Okay, this all takes place in a nice and simple 2D world... :)
Suppose I have a static object A at position Apos, and a linearly moving object B at Bpos with bVelocity, and an ammo round with ...
4
votes
1answer
987 views
Layering intersecting elements with jQuery
I have a page with draggable/droppable elements that once dropped need to calculate their left position and width in regards to other draggables that they may be touching.
This isn't too hard in and ...
4
votes
2answers
1k views
Powershell, kind of set intersection built-in?
For some game where one would need to find anagrams from a bunch of loose letters I ended up implementing a permutation algorithm to find all possible anagrams and filter those if needed for known ...
4
votes
3answers
2k views
The intersection point between a spline and a line
I'm trying to find a way to calculate the intersection between a b-spline and a straight line. So far Google hasn't been much help.
3
votes
2answers
100 views
Intersection of two sets (Lists) of data
I have two sets of data (Lists of complex objects or SQL data - LINQ to Entities) where im trying to find the intersection of the two sets of data. Specifically an intersection of the Complex ...
3
votes
4answers
194 views
Intersection or Solve
Consider the Following :
daList = {{541, 0.0593368}, {550, 0.298352}, {560, 0.72619}, {570,0.734982},
{580, 1.46149}, {590, 2.31119}, {600, 3.31509}}
Each sublist represent an {x,y} ...
3
votes
1answer
139 views
Intersection of multiple arrays in PostGreSQL
I have a view defined as such:
CREATE VIEW View1 AS
SELECT Field1, Field2, array_agg(Field3) AS AggField
FROM Table1
GROUP BY Field1, Field2;
What I would like to do is get the intersection ...
3
votes
1answer
86 views
Find elements existing in both collections using LINQ
Say I have two collections
int[] foo = { 1, 2, 3, 4 };
int[] bar = { 2, 4, 6, 8 };
What would be the simplest way using linq to select values that exist in both collections?
i.e. a collection ...
3
votes
2answers
195 views
Python list intersection efficiency: generator or filter()?
I would like to intersect two lists in Python (2.7). I need the result to be iterable:
list1 = [1,2,3,4]
list2 = [3,4,5,6]
result = (3,4) # any kind of iterable
Providing a full iteration will be ...
3
votes
5answers
345 views
Efficient algorithm to produce the n-way intersection of sorted arrays in C
I need to produce the intersection between some sorted arrays of integers in C. I know how to find the intersection between two sorted arrays, but I need to do this for more than two arrays, ...
3
votes
1answer
165 views
Intersect two dictionaries
Let's say I have two dictionaries as following:
dict1 = {vessel1: [a, b, c], vessel2: [a, d, e], ...}
dict2 = {operation1: [a, d], operation2: [a, e, b], ...}
Each dictionary (dict1, dict2) is a ...
3
votes
5answers
308 views
How do I do an integer list intersection while keeping duplicates?
I'm working on a Greatest Common Factor and Least Common Multiple assignment and I have to list the common factors. Intersection() won't work because that removes duplicates. Contains() won't work ...
3
votes
1answer
245 views
Adding arrays without copying duplicate values in C#
What is the fastest way to do this:
var firstArray = Enumerable.Range(1, 10).ToArray(); // 1,2,3,4,5,6,7,8,9,10
var secondArray = Enumerable.Range(9, 3).ToArray(); // 9,10,11,12
var ...