MCPcopy Create free account
hub / github.com/Vishruth-S/CompetitiveCode / Node

Class Node

GeeksForGeeks/Detect Loop in Linked List/solution.cpp:5–9  ·  view source on GitHub ↗

Link list node */

Source from the content-addressed store, hash-verified

3
4/* Link list node */
5class Node {
6public:
7 int data;
8 Node* next;
9};
10
11void push(Node** head_ref, int new_data)
12{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected