MCPcopy Create free account
hub / github.com/Ayush7614/Daily-Coding-DS-ALGO-Practice / Node

Method Node

Data Structures/QueueUsingLL.cpp:31–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29 Node<T> *next;
30
31 Node(T data) {
32 this -> data = data;
33 next = NULL;
34 }
35};
36
37template<typename T>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected