私はこのコードを書きました、そして私は私の問題が何であるか知りたいです、もしあなたが私自身のものを書くことを意図した私のコードを修正するのを手伝ってくれるなら、それは私に大いに役立ちます...編集:私はそれをに変更しましたこれで、実行時エラーは発生しませんが、名前を出力するか、ノードが存在するかどうかを確認すると、...
void node_delete(friend *amit) // Deleting a node
{
friend* temp;
int flag = 0;
while (head != NULL) // As long the node isnt the last one
{
if (0 == (strcmp(head -> next -> name, amit -> name))) // If the name that the user entered matchs a name in the linked list,
{ // It'll skip it
temp = head -> next;
head -> next = head -> next -> next; // Deletes a node from the linked list
flag = 1;
}
if (flag == 1) break;
head = head -> next; // Going to the next node
}
free(temp); // Freeing the deleted node
printf ("%s\n", amit -> name);
}
そして主に:
amit.name = "amit"
amit.age = 16
amit.gender = 'm'
node_delete(&amit);
構造体は次のように定義します。
typedef struct friend // The struct
{
char *name;
int age;
char gender;
struct friend* next; // A pointer that points to the next node in the linked list
}friend;
どうもありがとう :)