Smashery

3,966
Reputation
220 views

Registered User

name Smashery
member for 1 year
seen 33 mins ago
website
location Brisbane, Australia
age 21
Software Engineer. Coder for Trosnoth, a fun multiplayer game written in Python.
15h
comment Need help with Binary Search Tree in C++
Just realised - in your existing Insert method, you will also need to check for node->left or node->right being NULL before passing it to Insert. This is so that you can actually insert it below another node (if you pass NULL to the Insert function, it won't know how to put in the tree, since it has no Node to insert it under).
16h
comment Need help with Binary Search Tree in C++
By the way, Jake - welcome to SO!
16h
comment Need help with Binary Search Tree in C++
I've updated my answer. Hope that helps. Have you heard of overloading before?
16h
revised Need help with Binary Search Tree in C++
added 428 characters in body
16h
answered Need help with Binary Search Tree in C++
2d
awarded  Mortarboard
Dec
3
revised passing Temporary variables to reference arg in Cons works. but not for functions in general. Why?
edited tags
Nov
27
comment wierd C++ constructor/copy constructor issues in g++
You can't just say "But after a while, it started calling this copy cons. and now works!!" - you must have changed something.
Nov
27
asked Vertical Scrollbar in CListCtrl
Nov
27
comment Does a boolean condition in a for loop that is always false get optimized away?
Yeah, I was thinking about something like this - but I'd also wonder whether the extra effort of calling functions makes it not worth it
Nov
27
comment Does a boolean condition in a for loop that is always false get optimized away?
I'm sure you can find other things to optimise than a single if statement.
Nov
26
comment C/C++: any way to get reflective enums?
@Mark: I was just thinking that myself =P
Nov
25
answered what is binary save and load???
Nov
25
answered how can I save an object in the file???
Nov
18
revised Integer parsing
added 15 characters in body
Nov
18
answered Integer parsing
Nov
18
answered Python functions can be given new attributes from outside the scope?
Nov
17
revised Get text width in MFC
Extra info that might help others
Nov
16
asked Get text width in MFC
Nov
13
comment Print possible strings created from a Number
@Suppressingfire - Thanks! Yeah, there were a few problems with the initial code. I've tested it now, and all seems to work well.
Nov
13
revised Print possible strings created from a Number
added 169 characters in body; edited body
Nov
13
comment Print possible strings created from a Number
You only asked for a good solution to this problem. Why would you need a specific example in c or c++ if this isn't a homework question? Python is as close as you'll get to pseudocode. I recommend working it out yourself.
Nov
13
answered Print possible strings created from a Number
Nov
11
comment Dividing a timeval by an integer in C
I direct your attention to the note "Handling fractions of seconds is left as an exercise to the reader - but the approach suggested by Heath is one approach." I'm not claiming you'd divide the long int by the divisor to get the number of seconds. I'm claiming that you need to handle the division yourself in whatever method, yours being a correct approach.
Nov
11
comment Is C good for any projects beyond the command-line and learning?
"Learning the basic C++ should be easy" - from a language point of view, yes - but using objects properly is a completely different kettle of fish.
Nov
11
comment Is C good for any projects beyond the command-line and learning?
But if you're not worried about performance, aren't worried about people judging you for using a "lesser" language, and just want to make cool stuff, I would recommend trying a different language. I've worked a lot in Python using the Pygame library (which is actually just a wrapper on SDL); it's very easy to use and get used to, and you can make some very cool stuff with it. It's not going to be as fast as pure C, but if that's not a concern, my opinion is: why bother?
Nov
11
answered Is C good for any projects beyond the command-line and learning?
Nov
11
answered Dividing a timeval by an integer in C
Nov
9
comment Access variable from scope of another function?
The whole point of defining a variable within a particular scope is to limit access so that it's not accessible outside of that scope. So no, it's not possible. If you want to do this, then don't define it in local scope - use a class or global scope.
Nov
6
comment Is TCP Guaranteed to arrive in order?
Re: terms - Yep, of course. However, Twisted abstracts this into distinct messages (so interpreting them as messages is not up to me)
Nov
6
asked Is TCP Guaranteed to arrive in order?
Nov
6
asked Catching Enter Keypress from a CComboBox
Nov
5
answered C# Array of Buttons.
Nov
5
answered In Java, why must equals() and hashCode() be consistent?
Nov
5
comment MFC Open Folder Dialog
It's not quite what I'm after, but it's what I'll have to use - doesn't look like an alternative exists without too much work.
Nov
5
comment Resources in a static lib file - MFC
Yeah, I discovered this accidentally by myself =P Thanks for your answer! +1
Nov
5
accepted Resources in a static lib file - MFC
Nov
4
revised Catching when user selects an item from a CComboBox
added 61 characters in body
Nov
4
answered Catching when user selects an item from a CComboBox
Nov
3
comment Colon/Asterisk as a filename delimiter?
Strange, though, that I can create files with semicolons in them.
Nov
3
comment Colon/Asterisk as a filename delimiter?
If you try to rename a file in Windows Explorer, it comes up with that list, and stops you from doing it. I just assumed that it was like that at a fundamental level - but you're saying it's not so?
Nov
3
asked Colon/Asterisk as a filename delimiter?
Nov
3
comment Access is Denied for registry
The gibberish turned out to be an incorrect level of indirection or something like that. Thanks again for your help!
Nov
3
comment Access is Denied for registry
Thanks! I'm now getting gibberish saved into my registry... but it's something :-)
Nov
3
revised PushFront method for an array C++
added 193 characters in body
Nov
3
asked Access is Denied for registry
Nov
3
revised PushFront method for an array C++
added 184 characters in body
Nov
3
comment PushFront method for an array C++
Oh - usually, when you implement a queue, you should name the class "queue" rather than "stack" ;-)
Nov
3
answered PushFront method for an array C++
Oct
30
comment Code Golf: Spider webs
Oh wow - didn't know about the :: notation! Very nice!