Tagged Questions
The set-difference tag has no wiki summary.
9
votes
3answers
2k views
bash, Linux: Set difference between two text files
I have two files A-nodes_to_delete and B-nodes_to_keep. Each file has a many lines with numeric ids.
I want to have the list of numeric ids that are in nodes_to_delete but NOT in nodes_to_keep, e.g. ...
6
votes
5answers
767 views
What is the fastest or most elegant way to compute a set difference using Javascript arrays?
Let A and B be two sets. I'm looking for really fast or elegant ways to compute the set difference (A - B or A \B, depending on your preference) between them. The two sets are stored and manipulated ...
4
votes
1answer
154 views
How do I delete the intersection of sets A and B from A without sorting in MATLAB?
Two matrices, A and B:
A = [1 2 3
9 7 5
4 9 4
1 4 7]
B = [1 2 3
1 4 7]
All rows of matrix B are members of matrix A. I wish to delete the common rows of A and B from A without ...
4
votes
2answers
1k views
MySQL: difference of two result sets
How can I get the set difference of two result sets?
Say I have a result set (just one column in each):
result1:
'a'
'b'
'c'
result2:
'b'
'c'
I want to minus what is in result1 by result2: ...
3
votes
5answers
374 views
Set difference with XPath 1.0 - how do I get .//table without .//table//table?
I'm trying to find all the tables below my current node without also including the nested tables. In other words, if I have this, i want to find "yes" and not "no":
<table> <!-- outer table ...
2
votes
6answers
94 views
Most efficient way to remove items from a list without running into a collection modified exception?
I have 2 lists:
ListA { 'A', 'B', 'C' } //ListA is DictA.Keys
ListB { 'B', 'X', 'Y' } //ListB is DictB.Keys
If I do ListA.Except(ListB) I get an ExceptIterator returned which will let me iterate ...
2
votes
3answers
2k views
Find String Array Difference in Java
I created two array variables: s1 and s2
s1 contains {ram,raju,seetha}
s2 contains {ram}
I want to subtract the two arrays as sets, in order to get the following result:
raju
seetha
How can I do ...
1
vote
4answers
124 views
can't seem to get my head around the 'list difference' (\\) operator
I have heard the term 'list difference' (\\) operator in Haskell but still don't quite know how to get my head around it. Any examples or ideas?
1
vote
2answers
101 views
SQL - set difference and getting fields that aren't a part of the difference
I have a query that basically performs something like this:
select a, b, c
from tab
where tab.state = 'A'
minus
select a, b, c
from tab
where tab.state = 'B'
In this example, a, b, and c are the ...
1
vote
4answers
369 views
c++ Difference between two vector<MyType*> A and B
I've got two vector<MyType*> objects called A and B. The MyType class has a field ID and I want to get the MyType* which are in A but not in B. I'm working on a image analysis application and I ...
0
votes
1answer
92 views
bug in c++?-set_difference in c++ does not return std::copy
I have a code like below:
typedef std::set<std::string> set_of_strings;
set_of_strings s1, s2, result1;
some_func()
{
s1.insert("1-2");
...
0
votes
2answers
59 views
Error: insertor is not a member of std
I have a code like below:
#include<set>
#include<iterator>
some_func()
{
std::set_difference(s1.begin(), s1.end(), s2.begin(),s2.end(),std::insertor(myresult,myresult.begin()));
}
...
0
votes
0answers
19 views
Gnu Parallel Set difference Issues - No speed-up
I was attempting to utilize the __gnu_parallel library algorithms, but to no avail. It did not utilize multiple processors to accomplish the task. I never observed my system creating any additional ...
0
votes
2answers
159 views
get distinct list between two lists c#
I have two lists of strings and I want to get the list of distinct values between them or remove the second list elements from the first list ?
List<string> list1 = { "see","you","live"}
...
-1
votes
1answer
81 views
what is the alternative to set_difference in c++
I have two sets.they have some common elements(sets have strings as thier elements)
like :
set1 has elements
"1-2","1-1","3-4"
set2 has elements
"1-2","1-3","3-4"
i want take out the values ...
-1
votes
2answers
77 views
Error while doing set_difference: Variable result is not a structure
i had declared a set variable outside a function globally.
std::set<std::string> s1;
std::set<std::string> s2;
std::set<std::string> intersect;
std::set<std::string> ...