MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / displaylinkedlist

Function displaylinkedlist

CPP/binarytreeuse.cpp:407–415  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

405}
406
407void displaylinkedlist(node * p)
408{
409 while(p)
410 {
411 cout<<p->data<<" ";
412 p=p->next;
413 }
414 cout<<endl;
415}
416
417void zigzagtree(binarytree<int>*root)
418{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected