단일 연결 리스트 질문입니다..
난길
질문 제목 : 단일 연결 리스크 구현입니다.코드는 간단히 1: 입력 2: 삭제 3: 출력 4 : 종료입니다.
지금 1입력부분때문에 pdata nodealloc(int data)
pdata makenode(pdata head,int todata)
void inputnode(pdata *head,int data)
3개의 함수를 사용중인대 1개로 줄일라면 어떻게 해야하나요??줄이면 계속 주소참조로 에로발생합니다.질문 내용 : #include stdafx.h
#include string.h
#include stdlib.h
typedef struct _node {
int input;
struct _node *link;
}data,*pdata; //구조체 선언
void remove(pdata *head)
{
pdata p=*head;
pdata pre;
int deletecount;
printf(지우고자 하는 수는 ? : );
scanf_s(%d,&deletecount);
while(p && p-input != deletecount)
{
pre = p;
p=p-link;
}
if(p-link == null)
printf(찾는 data 없다 \n);
else if(*head == p)
{
*head = p-link;
free(p);
}
else
{
pre-link = p-link;
free(p);
}
}pdata nodealloc(int data)
{
pdata p = (pdata)malloc(sizeof(data));
p-input = data;
p-link = null;
return p;
}
pdata makenode(pdata head,int todata)
{
pdata n,p;
p=head;
n=nodealloc(todata);
/*n=(pdata)malloc(sizeof(data));
n-input = todata;
n-link = null;*/
if(head==null)
return n;
while(p-link)
p=p-link;
p-link = n;
return head;
}
void inputnode(pdata *head,int data)
{
*head=makenode(*head,data);
}
void printnode(pdata head)
{
pdata p=head;
int i;
printf(\n\n);
for(i=1;p;p=p-link,i++)
{
printf(%d 번째 요소 %d\n,i,p-input);
}
printf(\n\n);
}
int _tmain(int argc, _tchar* argv[])
{
int inputcount=0;
int count=0;
pdata head=null;
while(1)
{
printf(1. 정수입력 :\n);
printf(2. 정수 삭제 :\n);
printf(3. 정수 출력 :\n);
printf(4.종료 );
scanf_s(%d,&inputcount);
switch(inputcount)
{
case 1:
printf(정수 입력 : );
scanf_s(%d,&count);
inputnode(&head,count);
break;
case 2:
remove(&head);
break;
case 3:
printnode(head);
break;
case 4:
printf(종료합니다 \n);
break;
}
if(inputcount == 4)
break;
}
return 0;
}
-
앨런 2023-10-08
예 비쥬얼 2008인대 저렇게 나오더라고요 //
-
말근 2023-10-08
_tmain이라고 적어도 에러 안뜨나요??
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
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 |
2675356 | 2진수를 10진수로 바꾸려고 하는데 막히네요.. | 풀잎 | 2024-11-17 |
2675297 | Prity 비트 발생기 | 한란 | 2024-11-16 |
2675249 | C책 좀 추천해 주세요 (2) | 딸기우유 | 2024-11-16 |
2675193 | 연습문제 17-1 질문입니다. | 한별나라 | 2024-11-15 |