| 405 | } |
| 406 | |
| 407 | void displaylinkedlist(node * p) |
| 408 | { |
| 409 | while(p) |
| 410 | { |
| 411 | cout<<p->data<<" "; |
| 412 | p=p->next; |
| 413 | } |
| 414 | cout<<endl; |
| 415 | } |
| 416 | |
| 417 | void zigzagtree(binarytree<int>*root) |
| 418 | { |
nothing calls this directly
no outgoing calls
no test coverage detected