데이터 구조 학습 노트 1 - 링크 반전 (재 귀 와 비 재 귀)
재 귀적 사용 안 함:
//============================================================================
// Name : .cpp
// Author : Gaotong
// Version :
// Copyright : www.acmerblog.com
// Description : Hello World in C++, Ansi-style
//============================================================================
#include
#include
/* */
struct node
{
int data;
struct node* next;
};
/* . 3 , , , */
static void reverse(struct node** head_ref)
{
struct node* prev = NULL;
struct node* current = *head_ref;
struct node* next;
while (current != NULL)
{
next = current->next;
current->next = prev;
prev = current;
current = next;
}
*head_ref = prev;
}
/* 。 */
void push(struct node** head_ref, int new_data)
{
struct node* new_node =
(struct node*) malloc(sizeof(struct node));
new_node->data = new_data;
new_node->next = (*head_ref);
(*head_ref) = new_node;
}
/* */
void printList(struct node *head)
{
struct node *temp = head;
while(temp != NULL)
{
printf("%d ", temp->data);
temp = temp->next;
}
}
int main()
{
struct node* head = NULL;
push(&head, 20);
push(&head, 4);
push(&head, 15);
push(&head, 85);
push(&head, 60);
push(&head, 100);
printList(head);
reverse(&head);
printf("
Reversed Linked list
");
printList(head);
}
재 귀적 사용:
/* */
static struct node * reverseRecall(struct node* head){
//
if(NULL == head || head->next == NULL) return head;
//head->next
struct node * newHead = reverseRecall(head->next);
head->next->next = head; //
head->next = NULL;// next
return newHead;
}
소스 코드 는 링크 반전 - 데이터 구조 참조 박문 에서 유래 합 니 다. 그림 을 보고 단일 링크 의 반전 단일 링크 반전/역순 서 를 이해 하 는 두 가지 방법 입 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정수 반전Udemy 에서 공부 한 것을 중얼거린다 Chapter3【Integer Reversal】 (예) 문자열로 숫자를 반전 (toString, split, reverse, join) 인수의 수치 (n)가 0보다 위 또는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.