こんにちは、私は C の初心者で、それを学ぼうとしています。多くの場所で見つけたこのリンクリストの実装に関する簡単なクエリがあります。
void addNode(node **listhead, int data, int pos){
if(pos<=0 || pos > length(*listhead)+1){
printf("Invalid position provided, there are currently %d nodes in the list \n", length(*listhead));
return;
}else{
node *current = *listhead;
node *newNode = (node*)malloc(sizeof(node));
if(newNode == NULL){
printf("Memory allocation error\n");
return;
}
newNode->data = data;
newNode->next = NULL;
if (current == NULL){
*listhead = newNode;
return;
}else{
int i = 0;
while(current->next != NULL && i < pos-1){
++i;
current = current->next;
}
if(current->next == NULL){
current->next = newNode;
}
if(i == pos-1){
newNode->next = current->next;
current->next = newNode;
}
}
}
}
int main(){
node *head = NULL;
node **headref = &head;
addNode(headref, 1, 1);
addNode(headref, 2, 2);
addNode(headref, 3, 3);
printList(head);
return 0;
}
私のクエリはここにあり、NULLを指すポインターへのポインターを作成しています。このコードは機能しますが、これが良い方法かどうか知りたいと思っていました。そうでない場合、どのようにヘッド ポインターを作成し、その参照を addNode 関数に渡す必要がありますか。