Single-chain table reversal, single-chain reverse

Source: Internet
Author: User

Single-chain table reversal, single-chain reverse

#ifndef MYLIST_H#define MYLIST_H#include <stdio.h>class Node{public:    Node(int v){value = v;next=NULL;}    int value;    Node * next;};class List{public:    List(){        head = tail = NULL;    }    void addNode(Node *node){        if(head==NULL){            head = node;        }        if(tail==NULL){            tail = node;        }else{            tail->next = node;            tail = node;        }    }    void ReverseList(List * srcList){        Node * p = srcList->head;        Node * t = NULL;        Node * q = NULL;        while(p){            t = p;            p = p->next;            t->next = q;            q = t;        }        srcList->head = q;    }    void printList(){        Node * p = head;        while(p){            printf("value:%d ",p->value);            p = p->next;        }    }public:    Node * head,*tail;};#endif // MYLIST_H
#include <QCoreApplication>#include "mylist.h"int main(int argc, char *argv[]){    QCoreApplication a(argc, argv);    List * myList = new List();    for(int i=1;i<=5;i++){        Node * node = new Node(i);        myList->addNode(node);    }    myList->ReverseList(myList);    myList->printList();    return a.exec();}

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.