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

Class Node

GeeksForGeeks/Palindrome_Linked_List/Solution.cpp:5–13  ·  view source on GitHub ↗

Defining the structure

Source from the content-addressed store, hash-verified

3
4//Defining the structure
5struct Node{
6int data;
7struct Node *next;
8Node(int x)
9{
10 data=x;
11 next=NULL;
12}
13};
14
15
16bool isPalindrome(Node *head);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected