Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
5answers
607 views

Is C++ CLI a superset of C++?

Would a C++ CLI compiler be able to compile some large sets of C++ classes without modifications? Is C++ CLI a superset of C++?
7
votes
4answers
2k views

need an algorithm for collapsing netblock ranges into lists of superset ranges

My math-fu is failing me! I need an efficient way of reducing network ranges to supersets, e.g. if I input list of IP ranges: 1.1.1.1 to 2.2.2.5 1.1.1.2 to 2.2.2.4 10.5.5.5 to 155.5.5.5 10.5.5.6 to ...
6
votes
3answers
368 views

Is asset management a superset of source control

Do you take the entire asset management into consideration when planning your source control solution. For instance: images, external links, content, specs and data? I know there enough to wrestle ...
6
votes
3answers
1k views

Can you create a “superset” target in Xcode?

For the purposes of unit testing I'd like to create an iPhone project target in Xcode that includes all of the release application files, plus some additional files containing code useful for UI unit ...
4
votes
1answer
178 views

Printing all possible subsets of a list

I have a List of elements (1, 2, 3), and I need to get the superset (powerset) of that list (without repeating elements). So basically I need to create a List of Lists that looks like: {1} {2} {3} ...
4
votes
8answers
739 views

Is C# a superset of C?

Is C# a superset of C in anyway, like Objective-C or C++? Is there a way to compile C online with constructs such compiler flags?
3
votes
2answers
248 views

Is objective C 2.0 a proper superset of C?

I've heard that objective-C is a proper superset of C, but is objective-C 2.0? The reason I ask is that either it isn't, or I misunderstand the phrase 'proper superset', because this code is valid C ...
3
votes
3answers
2k views

What algorithm can calculate the power set of a given set?

I would like to efficiently generate a unique list of combinations of numbers based on a starting list of numbers. example start list = [1,2,3,4,5] but the algorithm should work for [1,2,3...n] ...
3
votes
2answers
228 views

How to walk two arbitrarily complex tree structures simultaneously and create a superset?

I have two tree structures that represent snapshots of a directory structure at two different points in time. Directories may have been added, removed or modified between the snapshots. I need to walk ...
2
votes
4answers
137 views

How to do list all the possible sums of combinations in an array for c++?

I have my homework assignment and I have no idea how to start with the code for this kind of Problem. Let say I have an integer array with consist of n elements, [A][B][C][D][E] (We have 5 elements ...
2
votes
3answers
398 views

Groovy Superset of Java

Is Groovy a superset of Java yet? If not, what are the incompatibilities between Groovy and Java? By superset, I mean source backward compatibility, in the sense that: you can take a Java file and ...
0
votes
1answer
41 views

Set-valued Attribute DBMS

I'm looking for a database that handles (fast, subsecond) queries on set-valued attributes. For instance, if I have a database of documents with tags, I'd like to be able to do a superset search. For ...
0
votes
3answers
145 views

How to find items in a superset that are not in a subset

I know there's a "not" on ienumerable thanks to linq which takes a collection to not against, but I'm worried about big oh performance What's the fastest algorithm to do this?
-5
votes
6answers
872 views

Objective-c superset of C [closed]

How is objective-c possibly a superset of C? It makes no sense. There is no stack in objective-c from what I can tell. Also, in C there is no need to use [] whenever invoking a method. Please explain. ...