구조체에 저장된 요소를 역순으로 출력하려면 어떻게 해야하나요?
조히
질문 제목 : 구조체에 저장된 요소를 역순으로 출력하려면 어떻게 해야하나요? 질문 내용 :
렉스랑 심볼테이블 만들고 있는데요
심볼테이블에 저장이 된 원소를 저장된 순서대로 출력을 하고싶은데 오히려 역순으로 출력이 되요
예를 들면
저장이 1, 2, 3, 4, 5 순으로 되었다면
출력은 5, 4, 3, 2, 1 이렇게 역으로 출력이 되네요..//symbol table
struct symtab
{
char *id; // id
int lines; // where it is used
struct symtab *next; // pointer to symbol
};
struct symtab *first; // first element, first declared symbols
struct symtab *sym_list; //first element, declared symbols
struct symtab *unde; // first element, undeclared symbols
extern void *malloc();
// store the first declared symbol
addfirst(char *word, int where)
{
struct symtab *sym;
sym =(struct symtab*) malloc(sizeof(struct symtab));
sym-next = first;
sym-id=(char*) malloc(strlen(word)+1);
strcpy(sym-id, word);
sym-lines=where;
first=sym;
}
// store declared symbol if it is used
add(char *word, int where)
{
struct symtab *sym;
sym =(struct symtab*) malloc(sizeof(struct symtab));
sym-next = sym_list;
sym-id=(char*) malloc(strlen(word)+1);
strcpy(sym-id, word);
sym-lines=where;
sym_list=sym;
}
// store undefined symbol
addundec(char *word, int where)
{
struct symtab * unsym;
unsym =(struct symtab*) malloc(sizeof(struct symtab));
unsym-next = unde;
unsym-id=(char*) malloc(strlen(word)+1);
strcpy(unsym-id, word);
unsym-lines=where;
unde=unsym;
}
//look for declared symbol
int lookup2(char * word)
{
struct symtab *fp = first;
for( ; fp;fp=fp-next){
if(strcmp(fp-id, word)==0)
{
return fp-lines; //declared, return the declared line
}
}
return undeclared; //not found;
}
// look for lines where declared symbol is used
int lookup(char *word)
{
struct symtab *wp=sym_list;
for( ; wp;wp=wp-next){
if(strcmp(wp-id, word)==0)
{
return wp-lines; //declared, return the declared line
}
}
return undeclared; //not found;
}
//여기부터 출력이 문제..
// print out declared symbols
printdeclared()
{
printf(symbols:\n);
char *tok;
struct symtab *fp = first;
struct symtab *ptr = sym_list;
while(fp!=null)
{
tok = fp-id;
printf(%s - declared on %d, used on , tok, lookup2(tok));
for( ; ptr!=null ; ptr = ptr-next)
{
if(strcmp(ptr-id, tok)==0)
{
printf(%d, , ptr-lines); //저장된 순서의 역순으로 출력이 되요 여기가;
}
}
ptr=sym_list;
fp=fp-next;
printf(\n);
}
// next, printout undeout undeclared symbols
printundeclared();
}제가 원하는 출력하려면 어떻게 고쳐야하나요?
-
꺆잉
사사삭 봤는데
printdeclared() -이함수에서
{
printf(\Symbols:\\n\); --------- 선언보다 먼저 왔네요
char *tok;
struct symtab *fp = first;
struct symtab *ptr = sym_list;
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
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 |
2675356 | 2진수를 10진수로 바꾸려고 하는데 막히네요.. | 풀잎 | 2024-11-17 |