このアクセス違反が発生する理由を理解するのに助けが必要です。これは在宅ワークで、すべて書いたのですが、リストを印刷するとアクセス違反が発生します。リストを前後に印刷しようとしています。問題は逆関数にあると思われます。これがコードです。助けてくれてありがとう。
List.h
typedef int Titem;
// Interface of list
typedef struct node *Tpointer;
typedef struct node
{
Titem item;
Tpointer next, previous;
} Tnode;
typedef struct
{
Tpointer first;
Tpointer last;
}Tdbl;
void initialize_dbl (Tdbl *list);
void insert_to_dbl_front (Tdbl *list, Titem data);
void insert_to_dbl_back (Tdbl *list, Titem data);
void print_dbl (Tdbl const list);
void print_dbl_reverse (Tdbl const list);
List.c
#include <stdio.h>
#include <stdlib.h>
#include "List.h"
#define TYPE_INT 0
#define TYPE_FLOAT 1
// Implementation of list (only obj is need in appl)
void initialize_dbl (Tdbl *list)
{
list->first = NULL;
list->last = NULL;
}
void insert_to_dbl_front (Tdbl *list, Titem data)
{
Tpointer newnode;
if(list->first == NULL)
{
newnode = (Tpointer) malloc(sizeof(Tnode));
newnode->item = data;
newnode->next = NULL;
newnode->previous = NULL;
list->first = newnode;
}
else
{
newnode = (Tpointer) malloc(sizeof(Tnode));
newnode->item = data;
newnode->next = list->first;
newnode->previous = NULL;
list->first = newnode;
}
}
void insert_to_dbl_back (Tdbl *list, Titem data)
{
Tpointer newnode;
newnode = (Tpointer) malloc(sizeof(Tnode));
newnode -> item = data;
if (list->first == NULL)
list->first = newnode; //first node
else
list->last->next = newnode; //not first node
list->last = newnode;
list->last->next = NULL;
}
void print_dbl (Tdbl const list)
{
Tpointer what;
printf("\nList forward:");
what = list.first;
while (what != NULL) {
printf("%d ", what->item);
what = what->next;
}
}
void print_dbl_reverse (Tdbl const list)
{
Tpointer last = list.last;
Tpointer temp = NULL;
printf("\nList reversed: ");
if(last == NULL)
{
printf("");
}
else
{
while(last != NULL)
{
temp = last->next;
last->next = last->previous;
last->previous = temp;
last = temp;
}
printf("\nList reverse:");
while (last != NULL)
{
printf("%d ", last->item);
last = last->next;
}
}
}
main.c
#include "list.h"
#include <stdio.h>
int main(void) {
Tdbl dbl;
initialize_dbl(&dbl);
print_dbl(dbl);
print_dbl_reverse(dbl);
insert_to_dbl_back(&dbl, 10);
print_dbl(dbl);
print_dbl_reverse(dbl);
insert_to_dbl_front(&dbl, 20);
print_dbl(dbl);
print_dbl_reverse(dbl);
insert_to_dbl_back(&dbl, 30);
print_dbl(dbl);
print_dbl_reverse(dbl);
insert_to_dbl_front(&dbl, 40);
print_dbl(dbl);
print_dbl_reverse(dbl);
insert_to_dbl_back(&dbl, 50);
print_dbl(dbl);
print_dbl_reverse(dbl);
fflush(stdin); getchar();
}
私は、リンクされたリストの約 10 の異なる例を見ただけでなく、私の質問に対する回答をフォーラムで検索しました。リストを逆にして試したすべての例は、何もしないように見えるか、このアクセス違反エラーで終わります。そうそう、メイン ファイルまたはヘッダー ファイルは何も変更できません。