One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| class Node(object): | |
| def __init__ (self,d,n = None): | |
| self.data = d | |
| self.next_node = n | |
| def get_next (self): | |
| return self.next_node | |
| def set_next (self,n): | |
| self.next_node = n | |
| def get_data (self): | |
| return self.data |
| #include<iostream> | |
| using namespace std; | |
| struct node_2 | |
| { | |
| int incoming; | |
| int data ; | |
| int outgoing_num ; | |
| int outgoing[100] ; | |
| int check; |
| #include<iostream> | |
| using namespace std; | |
| class queue | |
| { | |
| private: | |
| int data[10]; | |
| int front ; | |
| int rear ; | |
| int size ; | |
| public : |
| #include<iostream> | |
| using namespace std; | |
| struct node | |
| { | |
| int data ; | |
| node * next ; | |
| }; | |
| class list |
| #include<iostream> | |
| using namespace std; | |
| struct node | |
| { | |
| int data ; | |
| node * next ; | |
| }; | |
| class list |
| #include<iostream> | |
| #include<cstring> | |
| #include<cstdlib> | |
| using namespace std; | |
| struct node | |
| { | |
| int data ; | |
| node *next ; | |
| }; | |
| class stack |
| #include<iostream> | |
| #include<cstring> | |
| using namespace std; | |
| struct node | |
| { | |
| char data ; | |
| node *next ; | |
| }; | |
| class stack | |
| { |
| #include<iostream> | |
| using namespace std; | |
| struct node_1 | |
| { | |
| int data; | |
| node_1 *next ; | |
| node_1 *prev ; | |
| }; | |
| struct node_2 |
| #include<iostream> | |
| using namespace std; | |
| struct node_1 | |
| { | |
| int data; | |
| node_1 *next ; | |
| }; | |
| struct node_2 | |
| { |