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

0
votes
1answer
6 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
32 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
5 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 ...
17
votes
4answers
247 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 ...
1
vote
0answers
22 views

Custom function to fold1 over set: Why does “value” report wellsortedness error?

I am working with vectors, which are implemented as functions to be evaluated for elements of a set of natural-number indices. Of such vectors I would like to compute the maximum component, i.e. the ...
-2
votes
0answers
10 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
34 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
23 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
14 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
37 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
75 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
20 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
58 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
71 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
50 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
43 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
30 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
47 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
18 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
40 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
40 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
11 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 ...
4
votes
2answers
63 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
51 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
44 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
44 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
15 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
43 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
52 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
votes
1answer
26 views

How can I find a large data set for parallel algorithm comparison [closed]

Hello I'm writing MPI/OpenMp sorting algorithms to compare running on large data sets. I looked at research papers and people are using data sets around 2^5 to 2^19 for in similar work.. I was asked ...
0
votes
2answers
40 views

Get and Set Function vs Referenced Functions

I have this code: #include<iostream> #include<string> class Test { public: std::string& GetText() { return text; } void Display() { std::cout << text ...
0
votes
3answers
36 views

How to initialize a static const set<string> in implementation file?

Dear C++ users! My initialisation of a static const set<string> appears to be incorrect, I'd appreciate your guidelines on this: obj.h: class obj { ... private: static const ...
2
votes
4answers
92 views

Why won't my HashSet allow me to add two of the same instance, if their equals() says they're false?

The documentation for HashSet.add says Adds the specified element to this set if it is not already present. More formally, adds the specified element e to this set if this set contains no element ...
1
vote
3answers
81 views

Why is a set used instead of a map? C++

Sets are used to get information of an object by providing all the information, usually used to check if the data exists. A map is used to get the information of an object by using a key (single ...
1
vote
0answers
11 views

What is the image of a void function?

If functions are borrowed from the mathematical concept of mapping a value from some set S onto T, then the function: int increment(int input) { return input + 1; } would be the mapping from ...
0
votes
1answer
35 views

How to set the “Mark Completed” flag in Exchange 2007 w/SP2

Does anyone know how to programmatically set the "Mark Complete" flag in Exchange 2007 which makes a check mark appear in outlook. In outlook you can right click and select the "Mark Complete" option. ...
2
votes
1answer
43 views

Algorithm for preference based grouping

I am looking to figure out a way to sort people into classes by preference. For example, say there are 100 students that are each going to be assigned one of five classes: Science - 40 seats Math ...
0
votes
2answers
37 views

Unique tasks all along a program

In my program, I do some tasks, parametrized by a MyParameter object (I call doTask(MyParameter parameter) to run a task). From the beginning to the end of the program, I can create a lot of tasks (a ...
-6
votes
0answers
48 views

How do you create a set in Python? [closed]

The docs on python.org are really confusing, and I am a beginning programmer. Also, people don't seem to have asked this simple question here! Please help!

1 2 3 4 5 46