在C語言中,"current"指針通常用于表示當前正在處理的數據結構(如鏈表、樹等)中的元素
例如,在遍歷鏈表時,我們可以使用一個名為"current"的指針來表示當前正在訪問的節點。以下是一個簡單的遍歷鏈表并打印每個節點值的示例:
#include<stdio.h>
#include <stdlib.h>
struct Node {
int data;
struct Node* next;
};
int main() {
// 創建一個鏈表并初始化
struct Node* head = (struct Node*) malloc(sizeof(struct Node));
head->data = 1;
head->next = (struct Node*) malloc(sizeof(struct Node));
head->next->data = 2;
head->next->next = NULL;
// 使用current指針遍歷鏈表
struct Node* current = head;
while (current != NULL) {
printf("%d\n", current->data);
current = current->next;
}
return 0;
}
在這個例子中,"current"指針用于遍歷鏈表,并在每次迭代時指向當前正在訪問的節點。