링크리스트 삽입부분이 제대로 안되고 안되네요~~헤드가 널값이 아닌경우에요..
이거이름임
질문 제목 : 삽입부분이 제대로 되고 있지 않고 있습니다.질문 요약 :널값이 아니 경우에, 삽입이 제대로 안되고 있어 출력이 안되네요~~
헤드가 널값이 아닌 경우에 제대로 들어가고 않고 있습니다.
질문 내용 :
#include stdio.h
#include stdlib.h
#include malloc.h
#include string.h
struct phone{
char name[10];
char number[20];
struct phone *p; // 다음을 가리키는 포인터
};
void Insertnext(char *name, char *number);
void print(struct phone* cur);
struct phone *head = NULL;
int main(void){
int select = 0;
char name[10] = {0}, number[20] = {0};
while(select!=5)
{
printf(********************** MENU **********************\n);
printf(* 1. New data *\n);
printf(* 4. Print *\n);
printf(* 5. Exit *\n);
printf(**************************************************\n);
printf(Choose the item:);
scanf(%d, &select);
switch(select)
{
case 1:
printf(1. Insert\n);
printf(input name : \n);
scanf(%s, name);
printf(input number : \n);
scanf(%s, number);
// stdin(fflush);
Insertnext(name, number);
break;
case 2:
printf(2. Delete\n);
break;
case 3:
printf(3. Search\n);
break;
case 4:
printf(4. Print All\n);
print(head);
break;
case 5:
printf(5. Exit\n);
break;
}
}
}
void Insertnext(char *name, char *number)
{
//head 포인터가 NULL일 경우
if(head == NULL)
{
head = (struct phone *)malloc(sizeloc(sizeof(struct phone));
strcpy(head-name,name);
strcpy(head-number,number);
head-p = NULL;
}
else //head 가 NULL이 아닐 경우
{
struct phone *cur = NULL; // 임시변수
cur = (struct phone *)malloc(sizeof(struct phone));
cur = head ;
cur - p = head - p;
while(cur - p != NULL){
cur = cur - p ; }
cur - p = NULL;
strcpy(cur - name, name);
strcpy(cur - number, number);
}
}
void print(struct phone* head)
{
struct phone* cur = head;
while(cur!=NULL)
{
printf(%s %s \n, cur-name, cur-number);
cur = cur-p;
}
}
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2690486 | 문자열과 문자형이요 ~ | 다스리 | 2025-04-05 |
2690344 | 일본어 주석 깨짐 문제 (3) | 연하얀 | 2025-04-04 |
2690314 | 암호문 만들기 -비제네르- | 이퓨리한나 | 2025-04-03 |
2690292 | 왕초보자의 질문!!!!!! 도와주세요 (1) | 하랑 | 2025-04-03 |
2690269 | 정올 문제 인데.. 흠 | 반월 | 2025-04-03 |
2690237 | sizeof에서 short형을 썻는데 왜 4byte가 나올까요? (1) | 바나나 | 2025-04-03 |
2690183 | 문자열과 포인트 비교 (2) | 미즈 | 2025-04-02 |
2690154 | a -48 ? | 희미한눈물 | 2025-04-02 |
2690094 | 테트리스 질문요. | 지후 | 2025-04-01 |
2690066 | 문자열비교!! (1) | 매디 | 2025-04-01 |
2689888 | 좀도와주세요;; ㅠㅠ | 사람 | 2025-03-30 |
2689856 | 메뉴 그리는 거 질문 | 나라빛 | 2025-03-30 |
2689831 | c언어 프로그램 추천 | 하연 | 2025-03-30 |
2689801 | c언어 time.h에서 작동이 중지되었습니다. | 하람 | 2025-03-30 |
2689772 | 2차원 배열의 배열명에 대해서.. | 옆집꼬마야 | 2025-03-29 |
2689740 | 게임 TCP소켓 질문 (2) | 불꾼 | 2025-03-29 |
2689711 | 반복문 모래시계 | 한뎃집 | 2025-03-29 |
2689685 | 경우의 수에 따른 결과 처리 질문드립니다. (2) | 다흰 | 2025-03-29 |
2689655 | .exe에 아이콘 넣는 법좀 알려주세요 | 연하얀 | 2025-03-28 |
2689631 | #define 전처리문에 대해서 (2) | 사랑은아픔 | 2025-03-28 |