Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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 */
5
class Node {
6
public:
7
int data;
8
Node* next;
9
};
10
11
void push(Node** head_ref, int new_data)
12
{
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected