Реверсивный реверсивный реверсивный рекурсивно в c

Следующий код отлично работает, когда голова отправляется в качестве параметра к нему. Поскольку я новичок в C, я не мог понять, как это работает. Помогите мне пожалуйста.

struct node *recursiveReverseLL(struct node *list)
{
    struct node *revHead;
    if (list == NULL || list->link == NULL)
    {
        return list;
    }

    revHead = recursiveReverseLL(list->link);
    list->link->link = list;
    list->link = NULL; 

    return revHead;
}

Я не знаю, как ссылки предоставляются с использованием этих рекурсивных вызовов. т.е.), если ссылки равны,

1 -> 2 -> 3 -> 4 

тогда hw изменяется, как,

4 -> 3 -> 2 -> 1

Ответ 1

Общий рекурсивный алгоритм для этого:

  1. Divide список из 2 частей - первый узел и остальная часть списка.
  2. Рекурсивно вызвать реверс для rest связанный список.
  3. Ссылка rest на first.
  4. Исправить указатель head

Вот код с встроенными комментариями:

struct node* recursiveReverseLL(struct node* first){

   if(first == NULL) return NULL; // list does not exist.

   if(first->link == NULL) return first; // list with only one node.

   struct node* rest = recursiveReverseLL(first->link); // recursive call on rest.

   first->link->link = first; // make first; link to the last node in the reversed rest.

   first->link = NULL; // since first is the new last, make its link NULL.

   return rest; // rest now points to the head of the reversed list.
}

Надеюсь, эта картина прояснит ситуацию:

image
(источник: geeksforgeeks.org)
,

Ответ 2

Альтернативное решение:

struct node *head;
void reverse(struct node *prev, struct node *cur)
{
   if(cur){
      reverse(cur,cur->link);
      cur->link = prev;
    }
    else{
      head = prev;
    }
}

В основном, обратный вызов (NULL, head);

Ответ 3

/* Reverses a linked list, returns head of reversed list
*/
NodePtr reverseList(NodePtr curr) {
    if (curr == NULL || curr->next == NULL) return curr; // empty or single element case

    NodePtr nextElement = curr->next;
    curr->next = NULL;
    NodePtr head = reverseList(nextElement);
    nextElement->next = curr;
    return head;
}

Ответ 4

Другое решение:

struct node *reverse_recur(struct node *temp)
{
    if(temp->link==NULL)
    {
        return temp;
    }

    struct node *temp1=temp->link;

    temp->link=NULL;

    return (reverse_recur(temp1)->link=temp);

}

Ответ 5

Пусть связанный список 1- > 2 → 3 → 4

функция в c есть -

struct linked_node * reverse_recursive(struct linked_node * head)
{
struct linked_node * first;/*stores the address of first node of the linked
list passed to function*/
struct linked_node * second;/* stores the address of second node of the
linked list passed to function*/
struct linked_node * rev_head;/*stores the address of last node of initial 
linked list. It also becomes the head of the reversed linked list.*/
//initalizing first and second
first=head;
second=head->next;
//if the linked list is empty then returns null
if(first=NULL)
   return(NULL);
/* if the linked list passed to function contains just 1 element, then pass
address of that element*/
if(second==NULL)
   return(first);
/*In the linked list passed to function, make the next of first element 
 NULL. It will eventually (after all the recursive calls ) make the
 next of first element of the initial linked list NULL.*/
first->next=NULL;
/* storing the address of the reverse head which will be passed to it by the
 condition if(second==NULL) hence it will store the address of last element
 when this statement is executed for the last time. Also here we assume that 
the reverse function will yield the reverse of the rest of the linked 
list.*/
rev_head=reverse(second);
/*making the rest of the linked list point to the first element. i.e. 
 reversing the list.*/
second->next=first;

/*returning the reverse head (address of last element of initial linked 
list) . This condition executes only if the initial list is 1- not empty 
2- contains more than one element. So it just relays the value of last 
element to higher recursive calls.  */
return(rev_head);
}

теперь выполняется функция для связанного списка 1- > 2- > 3 → 4

  • внутри реверса (& 1) код запускается до rev_head = reverse (& 2);//здесь & 1 является адресом 1.

список функций -  1 (первый) → 2 (второй) → 3 → 4

  • внутри реверса (& 2) код запускается до rev_head = reverse (& 3); список функций
    2 (первый) → 3 (второй) → 4

  • внутри реверса (& 3) код работает до rev_head = reverse (& 4); список, если функция 3 (первый) → 4 (второй)

  • внутри реверса (& 4) условие завершения второго == NULL истинно, поэтому выполняется возврат отправляется адрес 4.

список функций

4 (первый) → NULL (второй)

  • назад назад (& 3) список функций - NULL < -3 (первый) 4 (второй)
    и значение rev_head = & 4, которое было возвращено

после выполнения second- > next = first;  список становится

NULL < - 3 (первый) < -4 (второй)

return (rev_head);, который проходит & 4, поскольку rev_head = & 4

  • назад к rev (& 2)

список в функции

NULL < -2 (первый) 3 (второй) < -4

и rev_head is & 4, который был возвращен rev (& 3)

после выполнения second- > next = first, список становится

NULL, < -2 (первый) < -3 (второй) < -4

возврата (rev_head);, который возвращает & 4 в rev (& 1);

  • назад к rev (& 1)

список в функции

NULL < -1 (первый) 2 (второй) < -3 < -4

и значение rev_head - это & 4, которое было передано обратным (& 3)

теперь second- > next = first выполняется и список становится

NULL < -1 (первый) < -2 (второй) < -3 < -4

возврата (rev_head); выполняется //rev _head = & 4, которое было возвращено обратным (& 2) и значение rev_head переходит к основной функции.

надеюсь, что это поможет. Мне потребовалось довольно много времени, чтобы понять это, а также написать этот ответ.

Ответ 6

    To fix head also:

void reverse_list_recursive_internal (struct list **head, struct list *node)
{
    /* last node, fix the head */
    if (node->next == NULL) {
        *head = node;
        return; 
    }
    reverse_list_recursive_internal(head, node->next);
    node->next->next = node;
    node->next = NULL;
}

void reverse_list_recursive (struct list **head)
{
    if (*head == NULL) {
        return;
    }
    reverse_list_recursive_internal(head, *head);
}

Ответ 7

Это прекрасный подход, который можно выполнить, чтобы рекурсивно отменить SLL:

1.    struct node* head; // global head
2.    void rec_reverse(struct node* prev, struct node* cur)
3.    {
4.        if (cur)
5.        {
6.            rec_reverse(cur, cur->next);
7.            cur->next = prev;
8.        }
9.        else
10.            head = prev;
11.    }

Вызвать функцию следующим образом:

rec_reverse(NULL, head);

подход:

  • Вызывая функцию рекурсивно (строка 6), мы переходим к последнему node связанный список.
  • Затем мы обновляем заголовок с адресом последнего node (строка 10).
  • Наконец, мы указываем ссылку каждого node на предыдущую node (строка 7).

Ответ 8

Мне кажется, что никто не предложил алгоритм с хвостовой рекурсией. В принципе, хвостовой рекурсивный алгоритм может быть скомпилирован без стека (при условии, что компилятор достаточно умен), создавая код, который потребляет меньше памяти.

Предположим, что TList - это пользовательский тип данных для односвязного списка, это указатель на структуру, которая является полем link для доступа к следующему элементу в списке.

Алгоритм следующий:

'' '

TList reverse_aux(TList l, TList solution) {
    if (l == NULL) {
        return solution;
    } else {
        TList tmp = l->link;
        l->link = solution;
        return reverse_aux(tmp, l);
    }
}

TList reverse(TList l) {
    return reverse_aux(l, NULL);
}

''"