-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcola.js
56 lines (41 loc) · 1.12 KB
/
cola.js
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
var nombres=[];
function Queue(){
var elemento=[];
this.elemento = Array.prototype.slice.call(arguments, 0);
this.enqueue = enqueue;
this.dequeue = dequeue;
this.empty = empty;
this.print = print;
/*El metodo enqueue agrega un elelmento a la cola */
function enqueue (element) {
this.elemento.push(element);
}
/*El metodo dequeue retira el primer elelmento de la cola */
function dequeue(){
return this.elemento
.shift();
}
/*El metodo empty indica si la cola esta vacia */
function empty(){
return this.elemento.length == 0;
}
/*El metodo print no es propio de queue, pero se utiliza para imprimir */
function print(element){
this.elemento.forEach(function(item){
element.appendChild(item.node);
});
}
var nombre= new Queue();
for(var i=0; i< 5; i++){
nombre.push(prompt("Ingrese el nombre"));
}
var apellido= new Queue();
for(var i=0; i<5; i++){
apellido.push(prompt("Ingrese el apellido"));
}
var nombres= new Queue();
for(var i=0; i<5; i++){
nombres.push(nombre.shift() + " " + apellido.pop());
}
nombres.print();
}