Class: Nodo

Inherits:
Struct
  • Object
show all
Defined in:
lib/alimentacion/lista.rb

Overview

Esta clase implementa una lista doblemente enlazada. Se desarrollan los métodos para insertar y extraer nodos por la cabeza y por la cola, e imprimir la lista completa. Se utiliza una estructura para representar los nodos, con los valores value, next y prev.

Author

David Hernández Suárez (david@alimentos)

Copyright

Cretive Commons

License

Distributes under the same terms as Ruby

Instance Attribute Summary collapse

Instance Attribute Details

#nextObject

Returns the value of attribute next

Returns:

  • (Object)

    the current value of next



10
11
12
# File 'lib/alimentacion/lista.rb', line 10

def next
  @next
end

#prevObject

Returns the value of attribute prev

Returns:

  • (Object)

    the current value of prev



10
11
12
# File 'lib/alimentacion/lista.rb', line 10

def prev
  @prev
end

#valueObject

Returns the value of attribute value

Returns:

  • (Object)

    the current value of value



10
11
12
# File 'lib/alimentacion/lista.rb', line 10

def value
  @value
end