首页 > 其他 > 详细

单链表反转

时间:2017-04-17 00:23:37      阅读:330      评论:0      收藏:0      [点我收藏+]

1, 非递归方式

List* ListRevert(List* list)
{
    List* head = NULL;  //new list head
    List* temp = NULL;
    while (list!= NULL){  //each time pick up a node from the old list, and add as the new list head
        temp = list->next;
        list->next = head;
        head = list;
        list = temp;
    }
    return head;
}

2, 递归方式

//make sure call the function like this: head=ListRevert_Recursive(head, NULL);

List* ListRevert_Recursive(List* list, List* pre)
{
    List* temp = list;
    if (list == NULL ){
        return list;
    }
    else if (list->next == NULL){
        list->next = pre;
        return list;
    }
    List* newhead = ListRevert_Recursive(list->next, list);  //recursive until we find the list head, and save to newhead
    list->next = pre;
    return newhead;
}

单链表反转

原文:http://www.cnblogs.com/ruiw/p/6720448.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!