私片方向リンクリストを反転させるための単一リンクリストを逆にするための再帰的な方法?
http://www.geeksforgeeks.org/write-a-function-to-reverse-the-nodes-of-a-linked-list/
に(C言語)この再帰的なプログラムを見てきました。プログラムでこのステップで
void recursiveReverse(struct node** head_ref){
struct node* first;
struct node* rest;
/* empty list */
if (*head_ref == NULL)
return;
/* suppose first = {1, 2, 3}, rest = {2, 3} */
first = *head_ref;
rest = first->next;
/* List has only one node */
if (rest == NULL)
return;
/* reverse the rest list and put the first element at the end */
recursiveReverse(&rest);
first->next->next = first;
/* tricky step -- see the diagram */
first->next = NULL;
/* fix the head pointer */
*head_ref = rest;}
、
/* reverse the rest list and put the first element at the end */
recursiveReverse(&rest);
first->next->next = first;
は私が書くことができます "REST->次=最初;" の代わりに "初段>ネクスト>次=最初;"?
「first-> next-> next = first;」と書くことの意義はありますか?
http://stackoverflow.com/questions/37725393/reverse-linked-list-recursively – BLUEPIXY