PIBD-11_Basalov_A.D_Simple/Lab_1/Data_Structure.h

43 lines
610 B
C
Raw Permalink Normal View History

//#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;
//
// }
//
//
// }
//};
//