“Liste liée inversée” Réponses codées

Liste liée inversée

 public ListNode ReverseList(ListNode head) 
 {
   if(head==null || head.next == null)
   	return head;

  var t = ReverseList(head.next);
  head.next.next = head;
  head.next = null;

  return t;
}
PrashantUnity

Inverser une liste liée

void reverse()
	{
		node* current, * prev, * temp;
		current = head;
		prev = NULL;
		while (current != NULL)
		{
			temp = current->next;
			current->next = prev;
			prev = current;
			current = temp;
		}
		head = prev;
	}
ANISH SINGH

Réponses similaires à “Liste liée inversée”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code