-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPersonasinglylinkedlist.cpp
132 lines (127 loc) · 2.04 KB
/
Personasinglylinkedlist.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
#include <iostream>
#include <stdlib.h>
#include <limits.h>
#include <stdio.h>
class Nodo
{
protected:
Nodo *sig;
Persona *per;
public:
Persona * getPersona();
void * setPersona(Persona *);
void setSig(Persona *;
Nodo *getSig();
Nodo(Persona *_per, Nodo *_sig){
per= _per;
sig = _sig;
}
~Nodo(){
if (sig!=NULL)
{
sig = NULL;
}
}
};
void Nodo::setPersona(Persona *_per)
{
per = _per;
}
Persona * Nodo::getPersona()
{
return per;
}
void Nodo::setSig(Nodo *_siguiente)
{
sig = _siguiente;
}
Nodo * Nodo::getSig()
{
return sig;
}
class Lista{
private:
Nodo *head;
public:
Lista()
{
head = NULL;
}
void inserHead(Persona *);
void insertEnd(Persona *);
void mostrar();
~Lista(){
if(head!=NULL)
{
head = NULL;
}
}
};
void Lista::inserHead(Persona *_per)
{
Nodo n(_per, head);
head = n;
}
void Lista::insertEnd(Persona *_per)
{
Nodo n(_per, null);
if (head == null)
{
head = n;
}else {
Nodo *aux = head;
while (aux.getSig()!=NULL)
{
aux = aux.getSig();
}
aux.setSig(n);
}
cout<<"Final";
}
class Persona
{
private:
//int tope;
char *nombre;
int edad;
public:
Persona()//constructor
{
nombre = NULL;
edad =0;
}
void setNombre(char *);
char * getNombre();
void setEdad(int);
int getEdad();
~Persona(){//Destructor
if (edad!=0)
{
delete [] nombre;
edad = 0;
}
}
};
void Persona::setNombre(char *n)
{
if (n!=NULL)
{
nombre = n;
}
}
char * Persona::getNombre()
{
return nombre;
}
void Persona::setEdad(int e)
{
if (e>0 && e<140)
{
edad = e;
}
}
int Persona::getEdad()
{
return edad;
}
///