단순 연결 리스트인데 출력결과가 이상하게 나와요.
찬늘봄
질문 제목 : 질문 내용 :
#include stdio.h
#include stdlib.h
#include string.h
#define true 1
#define false 0
typedef struct listnodetype
{
int data;
struct listnodetype* plink;
} listnode;
typedef struct linkedlisttype
{
int currentelementcount;// 현재 저장된 원소의 개수
listnode headernode;// 헤더 노드(header node)
} linkedlist;
linkedlist* creaditlist(linkedlist* plink);
int addelement(linkedlist* plink,int position,int data);
void display(linkedlist* plink);
listnode* getelement(linkedlist* plink,int position);
int getlenth(linkedlist* plink);
int main()
{
linkedlist* plink=null;
plink=creaditlist(plink);
//listnode data;
//원소추가
if(plink != null){
addelement(plink,0,1);
addelement(plink,1,3);
addelement(plink,2,5);
display(plink);
}
return 0;
}
linkedlist* creaditlist(linkedlist* plink)
{
plink=(linkedlist*)malloc(sizeof(linkedlist));
if(plink == null){
puts(헤더노드 메모리 할당 오류!);
return null;
}
memset(plink,0,sizeof(linkedlist));
return plink;
}
int addelement(linkedlist* plink,int position,int data)
{
int ret=false;
int i;
listnode* pnewnode=null;
listnode* pprenode=null;
if(plink != null)
{
if(position = 0 &&
position = plink-currentelementcount){
//새로운원소메모리할당
pnewnode=(listnode*)malloc(sizeof(listnode));
if(pnewnode != null){
pnewnode-data = data;
pnewnode-plink=null;
}
else{
puts(새로운 메모리 할당 오류!);
return ret;
}
//노드탐색
pprenode=&(plink-headernode);
for(i=0; iposition ; i++){
pprenode=pprenode-plink;
}
//노드관계재정립
pnewnode-plink=pprenode-plink;
pprenode-plink=pnewnode;
plink-currentelementcount++;
ret=true;
}
else{
printf(인덱스 오류!\n);
printf(현재 인덱스: [%d], 입력 인덱스: [%d]\n,
plink-currentelementcount,position);
}
}
else{
puts(메모리 할당 오류!);
}
return ret;
}
void display(linkedlist* plink)
{
int i,arrlen;
printf(현재 원소 개수: %d\n,plink-currentelementcount);
arrlen=getlenth(plink);
for(i=0; iarrlen; i++){
printf([%d]: %d\n, i,getelement(plink,i)-data);
}
}
listnode* getelement(linkedlist* plink,int position)
{
int i;
listnode* node=null;
listnode* preturn=null;
if(plink != null){
if(position =0 &&
position plink-currentelementcount){
node=&(plink-headernode);
for(i=0; iposition; i++){
node=node-plink;
}
preturn=node;
}
}
return preturn;
}
int getlenth(linkedlist* plink)
{
int len=0;
if(plink != null){
len=plink-currentelementcount;
}
return len;
}
[0]: 1
[1]: 3
[2]: 5
나와야하는데 0,1,3
으로 나오는데..
왜 그런거죠.?
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
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 |