wilhelmtell

3,435
Reputation
183 views

Registered User

Name wilhelmtell
Member for 1 year
Seen 1 hour ago
Website
Location Montréal, Québec
Age
Platoon Commander of the Blind Army of StackOverflow.
Nov
30
comment Algorithm - How to delete duplicate elements in a list efficiently?
@David Crawshaw: searching a set is not O(1). Unless of course you design your own set such that all elements are known ahead of time; in this case you can use a perfect hash-function. In C++, by the way, searching a set is guaranteed to be O(log n).
Nov
29
awarded  Nice Answer
Nov
29
answered How to change string into QString?
Nov
24
revised How can I solve this median programming problem in C++
Tag as homework
Nov
21
answered Is the order of initialization guaranteed by the standard?
Nov
20
awarded  Nice Answer
Nov
18
revised Why copy constructor is not called in this case?
deleted 10 characters in body
Nov
18
comment Someone please help me write this program on codeblocks?
@Adolph, we want to help you but you need to show us you're here to learn. The question, as posed, makes us feel you're asking us to do the homework for you. Ask specific questions: where are you having a difficulty? Is there any concept in the question you don't understand? If you have anything done already, show us where you're standing.
Nov
17
comment C Problems and Solutions
No, my point is to just start on something. I happen to be interested in compilers, parsers, interpreters and such. OS, games, text-editors -- they can all be big and daunting. The trick is to start. Make it as small as you can, even an incomplete subcomponent of a large porject. If you're dealing with what fascinates you then you'll do fine, and you'll even enjoy yourself.
Nov
17
revised insert a hyphen into a string C++
deleted 378 characters in body
Nov
17
answered insert a hyphen into a string C++
Nov
16
comment insert a hyphen into a string C++
No. You're concatenating.
Nov
16
comment insert a hyphen into a string C++
Is this a homework question? Where do you want to have the hyphen? Give an example of an input phone-number and its corresponding output phone-number.
Nov
16
accepted Getting Union, Intersection, or Difference of Sets in C++
Nov
16
answered C Problems and Solutions
Nov
15
comment Help un-noobify my C++ homework.
Don't go to Las Vegas with this algorithm. It's faster and less risky to make money by just going to work. Shifting or not. :p
Nov
15
answered Getting Union, Intersection, or Difference of Sets in C++
Nov
14
comment RegEx match open tags except XHTML self-contained tags
oniguruma have named groups. then again, c has loops and conditionals and other neat things, so might as well use that.
Nov
11
comment Isn’t there a point where encapsulation gets ridiculous?
Sometimes this is a significant factor in making a decision about a class design. Just be conscious about it. Sometimes it's just wrong, and this Roman way of doing things is the reason why things are getting out of hands. Then you simplify things and explain yourself. Someone might hit you with a bat and you'll have to correct yourself, but I think this whole process was still healthy for the system.
Nov
11
answered Isn’t there a point where encapsulation gets ridiculous?
Nov
10
accepted “Trap” control-d and control-c
Nov
10
revised check type of element in stl container - c++
edited body
Nov
10
answered check type of element in stl container - c++
Nov
9
comment How to convert String to int in C
Did you even /try/ to search for this on stackoverflow?
Nov
9
revised Is there a way to improve the speed or efficiency of this lookup? (C/C++)
added 24 characters in body
Nov
9
answered Is there a way to improve the speed or efficiency of this lookup? (C/C++)
Nov
9
comment STL: How to check that an element is in a std::set ?
@paul don't create static global functions. put your function in an anonymous namespace instead: that's the C++ way of creating functions that won't link into other compilation units. also, your T parameter should be a const reference, for const-correctness and for efficiency.
Nov
9
comment STL: How to check that an element is in a std::set ?
this is specific for sets and maps. vectors, lists etc. don't have a find member function.
Nov
8
revised C: Array with elements varying in size
added 82 characters in body
Nov
8
answered C: Array with elements varying in size
Nov
3
answered String Undeclared In C++
Nov
1
comment Sleep function in C++
... and the (supposed) reason there is no portable way to do it in the standard is because the a clock's precision (smallest unit of time) is hardware-dependent or OS-dependent. No, I don't find it a convincing reason either, but there we are.
Nov
1
accepted Variable number of arguments in C++?
Nov
1
revised Variable number of arguments in C++?
added 51 characters in body
Nov
1
answered Variable number of arguments in C++?
Nov
1
answered Can you give an example of stack overflow in C++?
Nov
1
revised “Trap” control-d and control-c
deleted 48 characters in body
Nov
1
revised “Trap” control-d and control-c
added 19 characters in body; added 8 characters in body; deleted 13 characters in body
Nov
1
answered “Trap” control-d and control-c
Nov
1
comment c++ - convert pointer string to integer
@alex tingle streams do have error states, and stringstreams use them when a parse fails.
Nov
1
accepted c++ - convert pointer string to integer
Oct
31
answered c++ - convert pointer string to integer
Oct
31
answered problem passing in istream argument to a class constructor.
Oct
27
comment How can I replace parenthesis in vim
don't even bather if you're going to have nested parens. regular expressions can't solve this problem because they have no support for counting (or a stack or recursion).
Oct
13
answered Delete NULL but no compile error
Oct
9
comment C++ stringstream returning extra character?
and here you rely on the convenience of standard streams having operator bool() defined.
Oct
8
comment How to print the function name as a string in Python.
maybe he means: def func(anothah_func): print anothah_func's name
Oct
5
comment Performance of Java 1.6 vs C++ ?
@alex a shared_ptr is a smart pointer, not a garbage collector. you will always know at compile time when a shared_ptr does its cleanup, but you don't necessarily know when a garbage collector breaks in to do its thing. When you write a flight-control system the last thing you want is that a garbage collector will burst in and start spinning aggressively while your plane is undertaking an emergency landing. The two don't work the same and don't perform the same
Aug
26
awarded  Nice Answer
Aug
9
comment Is it still paying to develop for the iPhone ?
@EBGreen Macbooks sell fine: do they sell for less than they're worth? :p