A set is a collection in which no element is repeated, which may be able to enumerate its elements according to an ordering criterion (an "ordered set") or retain no order (an "unordered set").

learn more… | top users | synonyms

1
vote
3answers
32 views

Get specific class objects from HashSet in Java

I have a public Set<ProjectItem> projectItems = new HashSet<ProjectItem>(); which can contains two types of classes (ProjectItem is a abstract super class for both of them). The classes ...
1
vote
1answer
46 views

How to edit a preference from the code

I would like to edit an android preference (checkBox preference) depending on the conditions. When I open the preferences activity I choose some option and it should affect other option (it should ...
0
votes
3answers
45 views

How to fastest count the number of set bits in php?

I just want to find some fastest set bits count function in the php. For example, 0010101 => 3, 00011110 => 4 I saw there is good Algorithm that can be implemented in c++. How to count the number of ...
0
votes
2answers
48 views

set window title from listboxitem name

This is my first time coding in C# and building applications in VS2010. My task is to build a application, that has two windows. First with ListBox with several items. The second one opens on ...
1
vote
2answers
44 views

Does SharedPreferences copy the passed Set<T> into another type?

I am trying to convert as Set to an array. I'd like it to store the insertion order of elements placed in it. The set i am constructing is passed into a SharedPreferences object in the putStringSet ...
0
votes
1answer
15 views

Get an element at a specific index from a NavigableSet

I have a NavigableSet and I would like to get its median object. Being that it's a NavigableSet, I know it's sorted, and thus I know that the median of it is either the middle element, or the ...
0
votes
1answer
30 views

A bison set evaluation code error

I write a sets evaluation program with flex and bison. I face a problem with error bison -d calc.y flex calc.l cc -o a.out calc.tab.c lex.yy.c -lfl calc.y: In function 'yyparse': ...
1
vote
3answers
52 views

How do I change what it means for objects to be duplicate in a set?

I want to store a set of Edges: class Edge { int u; int v; char symbol; } The problem is that it's possible for two Edge objects to have the same u, v and symbol, but they can both be ...
1
vote
2answers
64 views

Searching a set of unique pointers

I have a set of unique pointers pointing to objects. Occasionally, I will reveal some of the raw pointers to these objects so other parts of the code can do stuff with the objects. This code does not ...
0
votes
0answers
12 views

how to set variables after selecting data from database

I just want to know how to store the select results in a variable so I display it later on in the content or Echo. I tried all the options and answers available in StackOF but did not find my answer.. ...
0
votes
1answer
28 views

Changing the value of the elements of a set data structure?

I have a set < long long > A. After inserting 500 elements: ll k; for ( int i=0 ; i<500 ; i++ ) { cin >> k ; A.insert (k) ; } now when I want to change the value of elements ...
2
votes
2answers
111 views

c# { get; set; } shortcut

I am learning C#, and am learning about making fields private to the class, and using Getters and Setters to expose Methods instead of field values. Are the get; set; in Method1 and Method2 ...
1
vote
1answer
47 views

Python: Use sets in conjunction with dictionaries

I have this method here that generates a directed graph in the form of a dictionary where the values of a key are the nodes that the key points to, ie, {'stack': ['over','flow']}, stack points to over ...
1
vote
7answers
81 views

Using sets in “switch” statement [duplicate]

Am I able to add sets instead of numbers to "switch" statement? Like: switch(number) { case 1<50: //if number is between 1 and 50 { blah; break; } case 50<100: //if number is between 50 ...
2
votes
2answers
104 views

Defining an “arg max” like function over finite sets, and proving some of its properties, and avoiding a detour via lists

I'm working with a custom implementation of vectors as functions whose domain is a finite "index set" of natural numbers, and whose image is of some type on which one can define a maximum, usually ...
1
vote
2answers
43 views

find the smallest set of connected substrings

Let's consider a query set Q and a larger superset S. Each element of Q exists in S. The goal is to express Q using the smallest number of (connected) "components" of S. Here is a concrete example: ...
1
vote
1answer
60 views

Appearance of non-existing character in batch file

(Variables changed) I used command set /p A_Aaaaaa=<aaaaaa.aaa and it says that such file doesn't exist, so I deleted @echo off from top of file, and searched for line that causes this error. I ...
2
votes
5answers
88 views

Is there a difference between 'and' and '&' with respect to python sets?

I got very good help for question check if dictionary key has empty value . But I was wondering if there is a difference between and and & in python? I assume that they should be similar? dict1 ...
1
vote
2answers
47 views

Raphaeljs: Copy element or set to another paper

Is there a possibility of adding an element or set that exists within a paper to another paper, without creating each element twice from scratch? Background for this: I visualize a large node graph ...
0
votes
0answers
24 views

For-loop write output in variable

I need to get the default printer of the currently logged on user. For this I need the users 'sid', because when the user is logged on, the 'sid' is stored in the registry and the I can search for his ...
1
vote
2answers
79 views

What is the Time Complexity of size() for Sets in Java?

I know, it seems like a stupid question, you would expect that the time complexity of size() on any collection would be O(1) - but I'm finding that an "optimization" in my code which requires a call ...
0
votes
1answer
30 views

Specific number validation?

Is it possible to validate a field to a specific set of numbers using javascript? Say for example in a postcode field you can only enter four numbers to be be accepted e.g. 2747,2750, 2753, 2760, ...
3
votes
1answer
93 views

Is there a design reason why std::set doesnt have front and back member functions?

I know I can use *s.begin(), but same argument can be used for vector, which has front/back often I use the ordered property of set/map to get "smallest" element/key - ofc the fact that I do it is ...
1
vote
3answers
28 views

Setting Value or Text to an Unknown Element

I'm trying to set the value of an element, if the value can't be set (because it's not an input element such as input, select or textarea) then it must be an element that can be populated with the ...
0
votes
1answer
42 views

Comparing items within the same set to eachother

I have a set of shapes and need to determine which shapes are intersecting which. I currently use two enhanced-for-loops (one within the other) but it is not working as expected. It seems to be only ...
0
votes
2answers
29 views

Set the WordPress thumbnail in php code (automatically)

I'm struggling with this for a while now... I have written a function that automatically gets the thumbnail of the youtube video that i embed in my code. i saved this to a variable $img. My question ...
0
votes
1answer
47 views

Hash set add and search functions don't work properly - c++

I'm trying to implement a hash set. But it seems that the search function and the add function don't work properly. The add function lets me add a Person(which has phoneNumber and name) but when two ...
0
votes
1answer
36 views

Cassandra 1.2 CQL QERY SET

I have a table in Cassandra containing name, item. Using the following data types: name is text, item is set. f.e. I have these entries: name | item a | {item1, item3} b | {item2, item3} c ...
18
votes
4answers
364 views

Using getter/setter vs “tell, don't ask”?

Tell, don't ask principle here is often pasted to me when I use getters or setters, and people tell me not to use them. The site clearly explains what I should and what I shouldn't do, but it doesn't ...
-2
votes
0answers
22 views

Determining if a number is less than or equal to zero by hardware in Mips [closed]

I have a trouble on my Mips project given by my professor. I'm trying to draw a single cycle datapath, which includes BLEZ instruction(branch when $rs<=0). The trouble is, i can determine if a ...
0
votes
1answer
55 views

Modifying a set while iterating over it

I would like to iterate over a set while I'm deleting items from it. There are similar questions for deleting one item at the time or for lists, but they do not work for my case. The code follows; I ...
0
votes
1answer
34 views

Hash set function for hashing

I am trying to implement a hash set but I have some trouble for the hash function. I want to add in the set, persons that have name and phone number: class Person{ string name; long long int ...
3
votes
3answers
36 views

Uncaught typeerror: Object #<object> has no method 'method'

So here's the object 'playerTurnObj' function playerTurnObj(set_turn) { this.playerTurn=set_turn; function setTurn(turnToSet) { this.playerTurn=turnToSet; } function getTurn() ...
0
votes
1answer
48 views

Comparator - overloading the operator <

I am trying to use the std::set to contain a struct of three member variables. struct blah{ int a,b,c; bool operator < ( const blah& blo ) const{ return ( a < ...
0
votes
2answers
104 views

python - fastest way to find unique “words” in a string

I have a string, s, with a length of 2*2*1092-1 = 4367 characters. Here are the first 15 characters: 0 0 0 1 0 1 0 0 I am interested in the characters as couples; i.e. for the first 15 characters: ...
1
vote
2answers
45 views

in Bash you can set -x to enable debugging, is there any way to know if that has been set or not from within the script?

When making complex bash scripts, I will often use the command: set -x to enable me to debug the script if it is not behaving. However I have some UI functions that generate a LOT of garbage in ...
0
votes
3answers
71 views

Do I need to override the equals method of a class <A> to get unique objects in a Set<A>?

Maybe this question should be divided into two, but the first one is quite simple, it's about .equals(). I thought that == checks if two references point to the same object, while .equals() checks if ...
2
votes
1answer
26 views

Validate that a set is empty in node.js

var http = require('http'), url = require('url'), route = require('router')(); ... route.get('/{betNameType}', function(req, res) { var query = url.parse(req.url, true).query; if ...
0
votes
2answers
59 views

BAT File - START not working randomly on some Windows 7 machines

I have a bat file I'm using to start up GoogleChromePortable and open a web page in Kiok mode. It works great on my machine and 3 others, except for one where it alerts me that the .exe cannot be ...
0
votes
6answers
165 views

How to tell if an enum property has been set? C#

I have a class with an enum property like so: public class Foo { public Color ColorType {get;set;} } public enum Color { Red, Green, } Now this class can be initialized like so: var ...
1
vote
3answers
97 views

delete items from a set while iterating over it

I have a set myset, and I have a function which iterates over it to perform some operation on its items and this operation ultimately deletes the item from the set. Obviously, I cannot do it while ...
1
vote
2answers
72 views

check if numpy array is subset of another array

Similar questions have already been asked on SO, but they have more specific constraints and their answers don't apply to my question. Generally speaking, what is the most pythonic way to determine ...
4
votes
1answer
50 views

Use dicts as items in a set in Python

Is there a way to put some dict objects into a set in Python by using a simple method, like a comparator function? Came across a few solutions on here that involved a bunch of stuff that looked ...
1
vote
1answer
46 views

Sliding window set

I'm looking for a way to efficiently maintain a set of values from a 1 minute sliding window from a given datastream (~100k values/sec). I'm looking for solution with at most logarithmic insertion ...
0
votes
0answers
35 views

Set_no_wait not setting a value for a Text field

We just migrated to the latest version of WATIR(4.0.2), and the method set_no_wait does not set a value to the text field. The text field where I set a value triggers a pop up, and--hence on using ...
0
votes
1answer
58 views

Lightweight collection w/ Set contract

I'm developing in an application requiring lots of objects in memory. One of the largest structures is of the type Map<String,Set<OwnObject>> (with Set as HashSet) with OwnObject being ...
0
votes
0answers
34 views

Eclipse: opening the image with the intent action attach date

Hello everyone. I have a problem with opening an image with the intent action attach date this is my code: ContentValues values = new ContentValues(); values.put(Images.Media.DATA, ...
0
votes
1answer
50 views

NSSet with CLRegion Objects

I have two sets one obtained using NSMutableSet *monitoredRegionSet = [[locationManager monitoredRegions]mutableCopy]; and the other is obtained using the NSMutableSet *regionSet = [NSMutableSet ...
2
votes
1answer
34 views

Converting functions from type T to type U>:T

I have a question about creating a contravariant set represented by a function T=>Boolean that returns true if something is in the set, false otherwise. It looks like this: class BoolSet[-T](f: ...
0
votes
2answers
51 views

Wrong behaviour of set<Vec3b>

I have a set of Vec3b to hold posible RGB pixel values. std::set<cv::Vec3b> used_colors; But behaves weird: used_colors.insert(cv::Vec3b(100, 255, 255)); // this returns 1 although (100, ...

1 2 3 4 5 47