실행이 안되요..ㅠㅠ
여신
질문 제목 : 잘못된 부분점 찾아주세요 ㅠㅠ;다른건 문제 없는것 같구 del함수가 문제임질문 내용 : 다른건 문제 없는것 같구 del함수가 문제인데용
del은int val을 받아서 구조체 node의data가val과 같으면 지워버리는 함수에용
연결리스트 이구요 ㅋㅋㅋ
그리구 쓸데없는 부분이 있으면 그 부분도 지적해주시면 새겨 듣겟슴니다 ㅋㅋ 답변 부탁드려요 ~ ㅎㅎ
오류나 경고는 안드는데 실행에서 디버깅오류?? 그런게 뜨네요 ㅠㅠ
#includestdio.h
#includestdlib.h
struct node
{
int data;
struct node* next;
};
struct node* pstart=null;
struct node* pend=null;
void del(int val)
{
int i=0;
struct node* pnode=pstart;
struct node* pdelnode=null;
pnode=(struct node*)malloc(sizeof(struct node));
pdelnode=(struct node*)malloc(sizeof(struct node));
while(pnode-next != null)
{
if(pnode-next-data == val){
pdelnode=pnode-next;
pnode-next=pdelnode-next;
free(pdelnode);
}
pnode=pnode-next;
}
}
void addrear(int val)
{
struct node* current=null;
current=(struct node*)malloc(sizeof(struct node));
current-data=val;
current-next=null;
if(pstart==null){
pstart=pend=current;
}
else{
pend-next=current;
pend=current;
}
}
void addfront(int val)
{
struct node* current=null;
current=(struct node*)malloc(sizeof(struct node));
current-data=val;
current-next=null;
if(pstart==null){
pstart=pend=current;
}
else{
current-next=pstart;
pstart=current;
}
}
void printlist(struct node* current)
{
while(current!=null)
{
printf(%d\n, current-data);
current=current-next;
}
}
int main(void)
{
int i;
for(i=1;i=5;i++){
addfront(i);
}
del(3);
del(1);
printlist(pstart);
return 0;
}
-
슬S2아 2024-08-09
링크드리스트 삭제 함수에서 malloc함수를 사용하는 것을 처음 봤습니다.
이미 존재하는 링크드리스트에서 검색을 해서 삭제시켜야 하는거 아닌가요?
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2690517 | cygwin에서요.. (1) | 엘보어 | 2025-04-05 |
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 |