Dada una lista enlazada individualmente, escriba una función para eliminar un Node determinado. Su función debe seguir las siguientes restricciones:
1) Debe aceptar un puntero al Node de inicio como primer parámetro y el Node a eliminar como segundo parámetro, es decir, un puntero al Node principal no es global.
2) No debería devolver un puntero al Node principal.
3) No debe aceptar puntero a puntero al Node principal.
Puede suponer que la lista enlazada nunca se vacía.
Deje que el nombre de la función sea deleteNode(). En una implementación sencilla, la función necesita modificar el puntero principal cuando el Node que se eliminará es el primer Node. Como se discutió en la publicación anterior , cuando una función modifica el puntero principal, la función debe usar uno de los enfoques dados, no podemos usar ninguno de esos enfoques aquí.
Solución
Manejamos explícitamente el caso cuando el Node que se va a eliminar es el primer Node, copiamos los datos del siguiente Node a la cabecera y eliminamos el siguiente Node. Los casos en los que un Node eliminado no es el Node principal se pueden manejar normalmente encontrando el Node anterior y cambiando el siguiente del Node anterior. Las siguientes son las implementaciones.
Python 3
# Node class class Node: def __init__(self, data): self.data = data self.next = None # LinkedList class class LinkedList: def __init__(self): self.head = None def deleteNode(self, data): temp = self.head prev = self.head if temp.data == data: if temp.next is None: print("Can't delete the node as it has only one node") else: temp.data = temp.next.data temp.next = temp.next.next return while temp.next is not None and temp.data != data: prev = temp temp = temp.next if temp.next is None and temp.data !=data: print("Can't delete the node as it doesn't exist") # If node is last node of the linked list elif temp.next is None and temp.data == data: prev.next = None else: prev.next = temp.next # To push a new element in the Linked List def push(self, new_data): new_node = Node(new_data) new_node.next = self.head self.head = new_node # To print all the elements of the Linked List def PrintList(self): temp = self.head while(temp): print(temp.data, end = " ") temp = temp.next # Driver Code llist = LinkedList() llist.push(3) llist.push(2) llist.push(6) llist.push(5) llist.push(11) llist.push(10) llist.push(15) llist.push(12) print("Given Linked List: ", end = ' ') llist.PrintList() print(" Deleting node 10:") llist.deleteNode(10) print("Modified Linked List: ", end = ' ') llist.PrintList() print(" Deleting first node") llist.deleteNode(12) print("Modified Linked List: ", end = ' ') llist.PrintList() # This code is contributed by Akarsh Somani
Producción:
Given Linked List: 12 15 10 11 5 6 2 3 Deleting node 10: Modified Linked List: 12 15 11 5 6 2 3 Deleting first node Modified Linked List: 15 11 5 6 2 3
Complejidad de tiempo: O(n), donde n representa el tamaño de la array dada.
Espacio auxiliar: O(1), no se requiere espacio adicional, por lo que es una constante.
¡ Consulte el artículo completo sobre Eliminar un Node dado en la Lista vinculada bajo las restricciones dadas para obtener más detalles!
Publicación traducida automáticamente
Artículo escrito por GeeksforGeeks-1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA