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

2
votes
2answers
28 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
34 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
23 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
82 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
1answer
24 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
18 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
65 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
20 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, ...
2
votes
1answer
83 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
23 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
36 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
16 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
37 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
24 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
319 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
15 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
40 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
29 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
20 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
40 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
81 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
32 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
58 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
23 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
29 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
5answers
65 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 ...
0
votes
3answers
73 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
52 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
48 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
44 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
31 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
49 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
20 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
45 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
29 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
41 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, ...
-6
votes
1answer
51 views

How to implement different size words in unique set? [closed]

Suppose there is a file which contains datas like : A ABBA AB B BABBAA BB CBA A I have to put the datas in different set as per the size like this set1 = A set2 = AB, BB set3 = CBA set4 = ABBA ...
0
votes
0answers
31 views

Set and Set Operations in Javascript

I'm looking for Set and Set operations in Javascript for intersection, union and difference instead of having to write them manually. Here's equivalent Java code: Set<Integer> toMerged = ...
0
votes
0answers
12 views

Setting and accessing session variables in NearForums

I am having an issue while setting session variables in NearForums. I am trying to set session variable values through Ajax call using JQuery as follows. But when I try to access then in some action ...
1
vote
1answer
32 views

SET() or Please suggest suitable design

I guess this question is quite basic, but imo those are the hardest. So lets say I want to create a table about the personnel details of person , and lets say other than basic info like ...
2
votes
2answers
65 views

Need for new String[0] in the Set toArray() method

I am trying to convert a Set to an Array. Set<String> s = new HashSet<String>(Arrays.asList("mango","guava","apple")); String[] a = s.toArray(new String[0]); for(String x:a) ...
0
votes
0answers
6 views

Apply a Word Quick Style Set to an old document [migrated]

I created/saved a Word Quick Style Set. I applied the set to different documents, old and new, and it seemed to work just fine. Then I installed the Quick Style Set onto a second computer. (I also ...
0
votes
5answers
52 views

Initializing a Set with an Iterable [duplicate]

I want to initialize a Set Implementation (HashSet) in Java with an Iterable. However, the constructor of HashSet doesn't accept Iterables, but only Collections type objects. Is there a way to ...
0
votes
4answers
46 views

How can I take a Java Set of size X and break into X/Y Sets?

I have a Java Set (specifically HashSet). Suppose it has a size of 10k. How can I break it into 5 Sets each of size 2k?
0
votes
1answer
51 views

Determining if a Part of a string is in a List

Given the input Guess='1 5K' and a list playable=['AC','QS','5S','5K','KC'] How would I go about determining if the '5K' part of Guess is in playable? Also, if it is in playable, how would I go ...
0
votes
1answer
47 views

Hashset Search Function not Working C++

I am trying to implement a hashset and I obviously need a search function. I made one but it doesn't seem work. I want to add Persons in the hashset. Here is all the code: /* * HSet.h */ #ifndef ...
0
votes
0answers
21 views

save my image in the gallery android and then I want you open the image with the intent action_set_wallpaper

intent action set wallpaper can be called up in with an wallpaper image you just saved nell'sd? i have used this code to save my images: buttonSave.setOnClickListener(new Button.OnClickListener(){ ...
0
votes
0answers
36 views

ConcurentCollection ordering items by key and value whilst updating value atomically

I am trying to have a collection that can sort entrys by both key and values but allows the value to be updated/incremented atomically. You can only order on keys with the ConcurrentHashMap so I tried ...
0
votes
1answer
45 views

Declaring a set c++

What is wrong with declaring a set here, it is my professors code. set<Token> stmtBeginTokens { Token::IF, Token::ID, Token::WHILE, Token::INPUT, Token::OUTPUT, Token::EMPTYSTMT, ...
0
votes
2answers
56 views

How do I remove words in one list from another list (Set operation)

I have a list of word forms produced from a text. This list includes proper names (e.g. John, Mary, Edinburgh). In another field I have a list of proper names. I want to get a list of all word forms ...

1 2 3 4 5 46