연결리스트 소스좀봐주세요..
후회중
질문 제목 : 자료구조 알파벳 ..연결리스트출력문 정리좀 해주세요질문 내용 :
문자열을 받아서 a - b - c 이렇게 나오도록 하는 소스인데요, 삽입삭제가능하게 하는건데
처음에 12345중에 하나를 누르잖아요
만약에 1을 눌렀으면 문자열 입력 이렇게 뜨고 또 어떤 문자열을입력할 수 있게 되잖아요
근데 어떤문자열을 입력할거니?이게 아니라 어떤번호를 누를거니? 또 이렇게나와요..ㅠㅠ
근데 여기서 a를 누르면 문자열이 들어가긴들어가는데
출력문이나 메인에서 문제가있는거같은데
도무지모르겠네요
제발 도와주세요..
#include stdio.h #include stdlib.h
struct node *head;
struct node{int num;char data;struct node *link;};
struct node *insert(struct node *pre, char data1){struct node *i;i=(struct node*)malloc(sizeof(struct node));i-data=data1;if(head==null){head=i;i-link=null;}else{i-link=pre-link;pre-link=i;}return (i);}
struct node printlist(){struct node *pt, *pt1;char character;printf(%c , head-data);pt=head;while(pt-link!=null){pt1=pt-link;pt=pt1;printf(- %c , pt-data);}printf(\n\n);}void listdelete(){struct node *f, *m, *r;int i;printf(what do you want to delete? : );scanf(%d, &i);printf(\n);f=m=head;m=m-link;do{if(f-data==i){m=f-link;head=m;free(f);break;}else if(m-data==i){r=m-link;f-link=m-link;free(m);break;}f=f-link;m=m-link;}while(1);}
void main(){int num;char character;struct node *pre;head=pre=null;do{printf(1. input character \n);//printf(2. input between numbers \n);printf(3. print character in list \n);printf(4. delete character \n);printf(5. exit \n);printf(\n\nselect number : );scanf(%d, &num);{if(num==1){printf(what do you want character? : );scanf(%c, &character);pre=insert(pre, character);printf(\n);}/*else if(num==2){if(head==null){printf(not exist number in space \n\n);}else{betweenlist();}}*/else if(num==3){if(head==null){printf(not exist number in space \n\n);}else{printlist();}}else if(num==4){if(head==null)printf(not exist number in space \n\n);elselistdelete();}/* else (num==5);{return 0;}*/} } while(num!=5);}
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
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 |