43 lines
610 B
C
43 lines
610 B
C
|
//#include <stdio.h>
|
||
|
//#include <stdlib.h>
|
||
|
//
|
||
|
//#pragma once
|
||
|
//
|
||
|
//struct Node {
|
||
|
// int data;
|
||
|
// Node* next;
|
||
|
//};
|
||
|
//
|
||
|
//class Data_Structure
|
||
|
//{
|
||
|
//private:
|
||
|
// Node* head;
|
||
|
// struct Node {
|
||
|
// int data;
|
||
|
// Node* next;
|
||
|
// };
|
||
|
//public:
|
||
|
// Data_Structure(){
|
||
|
// head = NULL;
|
||
|
// }
|
||
|
// void addNode(int val){
|
||
|
// Node* newNode = new Node;
|
||
|
// newNode->data = val;
|
||
|
// newNode->next = head;
|
||
|
// head = newNode;
|
||
|
//
|
||
|
//
|
||
|
// }
|
||
|
// void printList() {
|
||
|
// Node* currentNode = head;
|
||
|
// while (currentNode->next != NULL) {
|
||
|
// printf("%d", currentNode->data);
|
||
|
// currentNode = currentNode->next;
|
||
|
//
|
||
|
// }
|
||
|
//
|
||
|
//
|
||
|
// }
|
||
|
//};
|
||
|
//
|