Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
926 views

Quickest way to find the complement of two collections in C#

I have two collections of type ICollection; c1 and c2. I'd like to find the set of items that are in c2 that are not in c1 where the heuristic for equality is the Id property on MyType. What is the ...
3
votes
1answer
127 views

Porting set operations from R's data frames to data tables: How to identify duplicated rows?

[Update 1: As Matthew Dowle noted, I'm using data.table version 1.6.7 on R-Forge, not CRAN. You won't see the same behavior with an earlier version of data.table.] As background: I am porting some ...
3
votes
2answers
489 views

How to perform set subtraction on arrays in C#?

What's the simplest way to perform a set subtraction given two arrays in C#? Apparently this is dead easy in Ruby. Basically I just want to remove the elements from array a that are in array b: ...
2
votes
1answer
166 views

Set operations in Appengine datastore

I assume there's no good way to do so, but if you had to, how would you implement set operations on Appengine's datastore? For example given two collections of integers, how would you store them in ...
1
vote
1answer
229 views

Union, intersect, difference large IntSet in O(m+n) times

from my question http://stackoverflow.com/questions/3601472/insert-element-to-arraylist-with-ascending-order-and-no-duplicate-elements i've done my insert method. Now i try to find out union, ...
1
vote
3answers
185 views

Finding Set Complement in Unix

Given this two files: $ cat A.txt $ cat B.txt 3 11 5 1 1 12 2 3 4 2 I want to find lines number that is in A "BUT NOT" in ...
0
votes
1answer
83 views

Set operations in DBIx::Class

What is the best way to perform set operations using DBIx::Class? I saw that one solution would be to create a Result Source based on my query, but my conditions will be defined by the user and I don ...
0
votes
2answers
82 views

Oracle Set operator query

Have a SQL query on Oracle 11g which returns the count of whether a record having certain ID and status exists within +/- 15 minutes range in a table. Now I wish to ignore the current date by adding ...
0
votes
4answers
123 views

Performing “Optimized” set Operations on java.util.ArrayList or in SQL

This is the first time I need to ask question to get my query solved before today previous threads were able to solve my queries. Scenario: I have two tables(lets say A & B) in a database with ...
0
votes
3answers
453 views

Need to find Basic Operations Sets Union/Intersect/Symmetric Difference JAVA

Need to finish implementing this to use UseSet class. Not sure if what I have implemented is 100% correct. However I need help with the Union and SysDiff. public class Set { private ...