Recursive and non-Recursive Algorithms for chain table Inversion

Source: Internet
Author: User

Note: The linked list does not have a pseudo header. The first element is the data element.

The node is defined as follows:

Struct Node
{
Int data;
Node * next;
};

 

Non-recursive algorithms:

1 node * reverse (node * head)
2 {
3 if (Head = NULL) return NULL;
4 node * pre = head;
5 Node * P = pre-> next;
6 node * q = NULL;
7 while (P! = NULL)
8 {
9 q = p-> next;
10 p-> next = pre;
11 if (pre = head) // reverse to prevent Loops
12 pre-> next = NULL;
13 pre = P;
14 p = Q;
15}
16 return pre;
17}

 

Recursive Algorithm:

Node * reverse (node * List, node * pre = NULL) {If (list = NULL) return list; node * Next = List-> next; list-> next = pre; return next = NULL? List: reverse (next, list );}

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.