User profile: jrbobdobbs83

User info
User name:jrbobdobbs83
History
Joined:
Number of posts:31
Latest posts:

char * input extraction and conversion
Man. I always make things harder than they have to be. Thank you!

char * input extraction and conversion
I am working on a class assignment requiring me to work with "time" elements as input by a user...

2-3 Tree insertion
Wow, that is elegant! I coded the node like so: [code] struct node23 { ...

2-3 Tree insertion
My intent with making the data pointers to ints rather than ints was to have a good way to indicate ...

2-3 Tree insertion
Initially, I planned on something like: [code] struct node23 { int ** data = new int*[2]; ...