연결리스트 삭제부분좀 도와주세요ㅠ
루리
다른건 다되는데 삭제부분이 다른게 삭제되네요 고수님들 좀 도와주세요 ㅠㅠ
#includestdio.h
#includemalloc.h
#include string.h
typedef struct student{
char name[60];
int score;
struct student *next;
}node;
//struct student p;
node *studentlist=NULL;
node **phead;
void printlist()
{
node *temp;
temp=studentlist;
while(temp!=NULL)
{
printf(%s\n,temp-name);
printf(%d\n,temp-score);
temp=temp-next;
}
}
node *makenode()
{
node *newnode;
newnode=(node*)malloc(sizeof(node));
puts(이름을 입력하세요..);
scanf(%s,newnode-name);
puts(점수를 입력하세요..);
scanf(%d,&newnode-score);
newnode-next=NULL;
return newnode;
}
void attachnode(node *newnode)
{
if(!studentlist)
studentlist=newnode;
else
{
newnode-next=studentlist;
studentlist=newnode;
}
}
void find()
{
node *temp;
temp=studentlist;
char person[40];
printf(이름을 입력하시오:);
scanf(%s,person);
while(temp!=NULL)
{
if(strcmp(person,temp-name)==0)
{
printf(%s 학생의 점수는 %d\n,temp-name,temp-score);
break;
}
else
temp=temp-next;
}
}
void modified()
{
node*temp;
temp=studentlist;
char person[40];
int num;
printf(수정할 사람의 이름을 입력하시오);
scanf(%s,person);
while(temp!=NULL)
{
if(strcmp(person,temp-name)==0)
{
printf(변경시킬 점수를 입력하시오. );
scanf(%d,&num);
temp-score=num;
break;
}
else
temp=temp-next;
}
printf(%s 학생의 점수는 %d\n,temp-name,temp-score);
}
void insert()
{
node *n;
n=makenode();
attachnode(n);
//return n;
}
void del()
{
node* temp=studentlist;
node* dummy=studentlist;
char person[60];
printf(삭제할사람의 이름을 입력하시오);
scanf(%s,person);
while(1)
{
if(temp-next==NULL)
{
printf(no data);
break;
}
if(strcmp(person,temp-name)==0)
{
dummy=temp-next;
temp-next=dummy-next;
free(dummy);
printf(삭제);
break;
}
temp=temp-next;
}
}
int main()
{
int n;
while(1)
{
printf(1.삽입2.출력3.검색4.수정5.삭제 6.종료\n);
scanf(%d,&n);
switch(n)
{
case 1:
insert();
break;
case 2:
printlist();
break;
case 3:
find();
break;
case 4:
modified();
break;
case 5:
del();
break;
case 6: return 0;
}
}
}
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2676182 | 숫자 순서대로 배열하는법 | 권뉴 | 2024-11-24 |
2676152 | 기본적인거 하나 질문드립니다. | 개미 | 2024-11-24 |
2676124 | 함수선언관련 질문이에요~...털썩..수정완료 (2) | 가지 | 2024-11-24 |
2676092 | C언어 책 (2) | 아서 | 2024-11-24 |
2676065 | 웹사이트 또는 메신저 등에서 원하는 텍스트를 검사하는방법?? (1) | 모든 | 2024-11-23 |
2676033 | 배열 기초연습중 발생하는 에러 ㅠㅜ... | Creative | 2024-11-23 |
2676005 | keybd_event 게임 제어 | 영글 | 2024-11-23 |
2675900 | 진짜기본적인질문 | 글길 | 2024-11-22 |
2675845 | 수정좀해주세요ㅠㅠㅠ | 해골 | 2024-11-21 |
2675797 | 병합 정렬 소스 코드 질문입니다. (2) | 도래솔 | 2024-11-21 |
2675771 | 큐의 활용이 정확히 어떻게 되죠?? | 해긴 | 2024-11-21 |
2675745 | 도서관리 프로그램 질문이요 | 도리도리 | 2024-11-20 |
2675717 | 2진수로 변환하는것! (3) | 동생몬 | 2024-11-20 |
2675599 | for문 짝수 출력하는 법 (5) | 널위해 | 2024-11-19 |
2675575 | Linux 게시판이 없어서.. | 첫삥 | 2024-11-19 |
2675545 | 구조체 이용할 때 함수에 자료 넘겨주는 것은 어떻게 해야 하나요? | 아연 | 2024-11-19 |
2675518 | 사각형 가로로 어떻게 반복해서 만드는지좀.. 내용 | 신당 | 2024-11-18 |
2675491 | !느낌표를 입력하는것은 어떻게합니까~~?ㅠㅠ (5) | 사지타리우스 | 2024-11-18 |
2675411 | 파일입출력으로 받아온 파일의 중복문자열을 제거한 뒤 파일출력 | 앨버트 | 2024-11-17 |
2675385 | 링크드리스트 주소록 질문드립니다. (1) | 겨루 | 2024-11-17 |