Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <bits/stdc++.h>
- using namespace std;
- class Nodo{
- public:
- int dato;
- Nodo *nodo;
- vector<Nodo *> lista;
- int i =0;
- Nodo (int dato){
- this->dato = dato;
- i =0;
- }
- Nodo(){
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement