Returns the reverse linked list of the singly linked list L with the head node.

Returns the reverse linked list of the singly linked list L with the head node.

List Reverse( List L )
{
    
    
    Position Old_head, New_head, Temp;
    New_head = NULL;
    Old_head = L->Next;

    while ( Old_head )  {
    
    
        Temp = Old_head->Next;
        
 Old_head->Next=New_head
;  
        New_head = Old_head;  
        Old_head = Temp; 
    }
    
L->Next=New_head
;
    return L;
}

Guess you like

Origin blog.csdn.net/weixin_41438423/article/details/125413265