죄송한데 문제좀 풀어주실분...ㅠ C 연결리스트 문제..
난슬
질문 제목 : 연결리스트 응용문제연결리스트 문제 풀어주세요 c 구조론 초ㅉㅏ입니다...질문 내용 :
다음 코딩을 보고 문제에서 주어진 함수를 생성하라첫번째문제
1. 함수 link fromto(int start, int end);를 생성하여라. 이 함수의 로직은리스트의 데이터들 값안에는 start에서 end까지의 값들이 들어가고, start가 end보다 크다면 empty list를 리턴으로 받는다. 예를 들어 fromto(2,6)이면 2-3-4-4-6-x 가 출력되어야한다. 또 fromto(3,3)이면 3-x 마지막으로 fromto(4,3)이면 -x가 출력결과로 떠야한다. loop based, recursive하게 프로그래밍하여라..두번째문제
2. dlink doublify(link ls)함수를 생성하여라. 이 함수는 단순연결리스트가 갖고 있는 데이터 값을 그대로 받아 새로운 이중연결리스트를 생성시키는 함수이다.#include stdio.h
#include stdlib.h
#include assert.h
typedef int item;
typedef struct node *link;
struct node {
item item;
link next;
};
link newnode (item item);
void printlist (link ls);
link deletenode (link ls);
link deletezeros (link ls);
void printitem (item item) {
printf (%d,item);
}
void insertnode (link ls, item item) {
link newn = newnode (item);
assert (ls != null);
newn-next = ls-next;
ls-next = newn;
}void printlist (link ls) {
link curr = ls;
while (curr != null) {
printf (-[);
printitem (curr-item);
printf (]);
curr = curr-next;
}
printf (-[x]\n);
}
link newnode (item item) {
link ls;
ls = malloc (sizeof (*ls));
ls-item = item;
return ls;
}
link deletenode (link ls) {
assert (ls != null);
assert (ls-next != null);
link result = ls-next;
ls-next = ls-next-next;
return result;
}
link deletezeros (link ls) {
link tmp,result;
if (ls == null) {
return ls;
}
if (ls-item == 0) {
tmp = ls;
ls = ls-next;
free (tmp);
return (deletezeros (ls));
} else {
result = ls;
result-next = deletezeros (ls-next);
return result;
}
}
int main (int argc, const char * argv[]) {
link ls;
ls = newnode (0);
insertnode (ls, 2);
insertnode (ls-next, 0);
printlist (ls);
ls = deletezeros (ls);
printlist (ls);
return 0;
}
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2690627 | c 변수 선언후 변수값 저장안하고 출력 | 방방 | 2025-04-06 |
2690600 | 릴리즈 모드로 컴파일해서 다른 컴퓨터에서도 실행파일을 실행할수 있는 방법 알려주세요 (5) | 제나 | 2025-04-06 |
2690576 | bin파일 저장 | 다올 | 2025-04-06 |
2690547 | C언어 뒷부분이라 너무 어려워서요;; 프로그래밍 하나만 부탁드립니다 (4) | 그루터기 | 2025-04-05 |
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 |