User profile: Duoas

User info
User name:Duoas
Name:Michael Thomas Greer
Location:Cherry Hill, NJ
Statistical data
Birthdate:Apr 28, 1974
Occupation:Administrator
Skills:C
BASIC
C++
Visual Basic
Pascal
Delphi
Assembly
Java
Python
Tcl/Tk
Haskell
Scheme
History
Joined:
Number of posts:6850
Latest posts:

Binary tree Insert?
I know what they are. And to be pedantic, a BST is a type of binary tree with a specific constraint ...

Command Line Parameters
@[b]vlad[/b] You don't really have to be rude about it. @[b]ARMinius[/b] I often find it convenient...

Add value to beginning of string
http://www.cplusplus.com/forum/general/102476/ :-<

Binary tree Insert?
[code] void Insert(Node *& root, int data) { if(root == nullptr) { Node * nn = new Node; ...

Add value to beginning (left hand side) of string
You have to be more specific. C or C++? What do you mean by "value"? Integer? String? [edit] On ...