Hi all
is there an easy way to visualize non linear(non contiguous) data structures like linked list or binary trees of a program in gnu debugger(gdb)....
to visualize an array of structures we can simply use....
print *array@len
if more indirection is needed we can also use
print **array@len
but above works for only linear data structures like arrays...
Please let me know if non linear(non contiguous) data structures likes linked list or binary trees can be visualized in a similar way... Thanks in advance...