Click here to Skip to main content
15,907,910 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: OT Pin
George_George18-Apr-08 0:59
George_George18-Apr-08 0:59 
GeneralRe: any smarter ways to design this tree structure Pin
Matthew Faithfull18-Apr-08 0:58
Matthew Faithfull18-Apr-08 0:58 
GeneralRe: any smarter ways to design this tree structure Pin
George_George18-Apr-08 1:17
George_George18-Apr-08 1:17 
GeneralRe: any smarter ways to design this tree structure Pin
Matthew Faithfull18-Apr-08 6:42
Matthew Faithfull18-Apr-08 6:42 
GeneralRe: any smarter ways to design this tree structure Pin
George_George18-Apr-08 22:44
George_George18-Apr-08 22:44 
GeneralRe: any smarter ways to design this tree structure Pin
Matthew Faithfull19-Apr-08 11:41
Matthew Faithfull19-Apr-08 11:41 
GeneralRe: any smarter ways to design this tree structure Pin
George_George19-Apr-08 21:25
George_George19-Apr-08 21:25 
GeneralRe: any smarter ways to design this tree structure Pin
Matthew Faithfull20-Apr-08 5:31
Matthew Faithfull20-Apr-08 5:31 
Everything has to be deleted eventually. I assume you're not allocating all these structures on the stack so you're eventually going to have to delete them. 'Linear Traversabiliy', being able to iterate through every node and reach each one exactly once, is a very important property to maintain in complex data structures. Deleting a non linear-traversable data structure reliably is potentially very nasty. Don't go there. Keep it as simple as it can be to do the job and it'll be fine. Smile | :)

"The secret of happiness is freedom, and the secret of freedom, courage."
Thucydides (B.C. 460-400)

GeneralRe: any smarter ways to design this tree structure Pin
George_George20-Apr-08 17:34
George_George20-Apr-08 17:34 
GeneralRe: any smarter ways to design this tree structure Pin
Matthew Faithfull21-Apr-08 9:54
Matthew Faithfull21-Apr-08 9:54 
GeneralRe: any smarter ways to design this tree structure Pin
George_George21-Apr-08 22:02
George_George21-Apr-08 22:02 
GeneralRe: any smarter ways to design this tree structure Pin
Maximilien18-Apr-08 1:04
Maximilien18-Apr-08 1:04 
GeneralRe: any smarter ways to design this tree structure Pin
George_George18-Apr-08 1:20
George_George18-Apr-08 1:20 
GeneralRe: any smarter ways to design this tree structure Pin
jhwurmbach18-Apr-08 2:11
jhwurmbach18-Apr-08 2:11 
Questioncan anybody tell me how this code works Pin
philiptabraham17-Apr-08 22:47
philiptabraham17-Apr-08 22:47 
AnswerRe: can anybody tell me how this code works [modified] Pin
CPallini17-Apr-08 22:59
mveCPallini17-Apr-08 22:59 
GeneralRe: can anybody tell me how this code works Pin
David Crow18-Apr-08 3:08
David Crow18-Apr-08 3:08 
GeneralRe: can anybody tell me how this code works Pin
CPallini18-Apr-08 4:12
mveCPallini18-Apr-08 4:12 
GeneralRe: can anybody tell me how this code works Pin
ThatsAlok18-Apr-08 5:51
ThatsAlok18-Apr-08 5:51 
GeneralRe: can anybody tell me how this code works Pin
ThatsAlok18-Apr-08 3:53
ThatsAlok18-Apr-08 3:53 
GeneralRe: can anybody tell me how this code works Pin
CPallini18-Apr-08 4:13
mveCPallini18-Apr-08 4:13 
AnswerRe: can anybody tell me how this code works Pin
Rajesh R Subramanian17-Apr-08 23:01
professionalRajesh R Subramanian17-Apr-08 23:01 
GeneralRe: can anybody tell me how this code works Pin
CPallini17-Apr-08 23:06
mveCPallini17-Apr-08 23:06 
GeneralRe: can anybody tell me how this code works Pin
Rajesh R Subramanian18-Apr-08 2:16
professionalRajesh R Subramanian18-Apr-08 2:16 
GeneralRe: can anybody tell me how this code works Pin
ThatsAlok30-Jun-09 23:26
ThatsAlok30-Jun-09 23:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.