단일연결리스트 중간 삽입 코딩해보았는데 잘 안되네요 ㅠㅠ
시아
질문 제목 : 단일연결리스트 중간삽입질문 내용 :제가 데이터구조를 연습하려고 단일연결리스트 코드를 짜보았는데
처음과 마지막 노드에 데이터를 대입하는 건 성공했습니다.
그런데 중간에 삽입하는게 힘드네요 ㅠㅠ
예를 들어 월 화 수 목 금 사이에 민이란 글자를 집어넣을때
수라는 글자 뒤에 집어넣어
월 화 수 민 목 금 이렇게 만들고 싶었습니다.
그런데 원하는 대로 안돌아가는 경우가 많네요...어디가 문제인지 ㅠㅠ
(주석처리한 부분입니다)
#include stdio.h
#include stdlib.h
#include string.h
typedef struct listnode{
char data[10];
struct listnode *link;
} listnode;
typedef struct{
listnode *head;
} linkedlist_h;
linkedlist_h* createlinkedlist_h(void);
void freelinkedlist_h(linkedlist_h*);
void addlastnode(linkedlist_h*,char*);
void reverse(linkedlist_h*);
void deletelastnode(linkedlist_h*);
void printlist(linkedlist_h*);
void addfirstnode(linkedlist_h*,char*);
void deletefirstnode(linkedlist_h*);
//void addmiddlenode(linkedlist_h*,char*,char*);
linkedlist_h* createlinkedlist_h(void){
linkedlist_h* l;
l = (linkedlist_h*)malloc(sizeof(linkedlist_h));
l-head=null;
return l;
}
void addlastnode(linkedlist_h* l,char *x){
listnode* newnode;
listnode* p;
newnode = (listnode*)malloc(sizeof(listnode));
strcpy(newnode-data,x);
newnode-link=null;
if(l-head==null){
l-head=newnode;
return;
}
p=l-head;
while(p-link != null)
p=p-link;
p-link=newnode;
}
void reverse(linkedlist_h *l){
listnode* p;
listnode* q;
listnode* r;
p=l-head;
q=null;
r=null;
while(p!=null){
r=q;
q=p;
p=p-link;
q-link=r;
}
l-head=q;
}
void deletelastnode(linkedlist_h* l){
listnode* previous;
listnode* current;
if(l-head==null) return;
if(l-head-link==null){
free(l-head);
l-head=null;
return;
}
else{
previous=l-head;
current=l-head-link;
while(current-link!=null){
previous=current;
current=current-link;
}
free(current);
previous-link=null;
}
}
void freelinkedlist_h(linkedlist_h* l){
listnode *p;
while(l-head!=null)
p=l-head;
l-head=l-head-link;
free(p);
p=null;
}
void printlist(linkedlist_h* l){
listnode* p;
printf(l=();
p=l-head;
while(p!=null){
printf(%s,p-data);
p=p-link;
if(p!=null){
printf(, );
}
}
printf() \n);
}
void addfirstnode(linkedlist_h* l,char* x){
listnode* newnode;
listnode* p;
newnode=(listnode*)malloc(sizeof(listnode));
strcpy(newnode-data,x);
newnode-link=l-head;
l-head=newnode;
}
void deletefirstnode(linkedlist_h* l){
l-head=l-head-link;
}
/*
void addmiddlenode(linkedlist_h* l,char* conf,char* x){
listnode* newnode;
listnode* temp;
newnode=(listnode*)malloc(sizeof(listnode));
temp=(listnode*)malloc(sizeof(listnode));
strcpy(newnode-data,x);
if(l-head==null){
l-head=newnode;
newnode-link=null;
}
else{
temp=l-head;
while(!strcmp(temp-link-data,conf)){
temp=temp-link;
}
newnode-link = temp-link;
temp-link = newnode;
}
}
*/
int main(){
linkedlist_h* l;
linkedlist_h* pre;
l=createlinkedlist_h();
pre=createlinkedlist_h();
printf((1) 공백리스트 성성!\n);
printlist(l); getchar();
printf((2) 리스트에 4개의 노드 추가하기!\n);
addlastnode(l,월);
addlastnode(l,수);
addlastnode(l,금);
addlastnode(l,토);
printlist(l); getchar();
/*
printf((5) 리스트 중간에 노드 한개 추가하기!\n);
addmiddlenode(l,월,민);
printlist(l); getchar();
*/
printf((3) 리스트 처음에 노드 두개 추가하기!\n);
addfirstnode(l,일);
addfirstnode(l,민);
printlist(l); getchar();
printf((4) 마지막 노드 삭제하기!\n);
deletelastnode(l);
printlist(l); getchar();
printf((6) 리스트 원소를 역순으로 변환하기!\n);
reverse(l);
printlist(l); getchar();
printf((7) 첫번째 노드 삭제하기!\n);
deletefirstnode(l);
printlist(l); getchar();
printf((8) 리스트 공간 해체!\n);
freelinkedlist_h(l);
printlist(l);
getchar();
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 |