데이터 구조 단일 체인 테이블 기본 조작
2300 단어 데이터 구조
typedef struct lnode { int data; struct lnode *next; }node;
void creatlist1(node *&L,int a[],int n) { node *s; L=(node *)malloc(sizeof(node)); L->next=NULL; for(int i=0;i { s=(node *)malloc(sizeof(node)); s->data=a[i]; s->next=L->next; L->next=s; } }
void creatlist2(node *&L,int a[],int n) { node *s,*r; L=(node *)malloc(sizeof(node)); r=L; for(int i=0;i { s=(node *)malloc(sizeof(node)); s->data=a[i]; r->next=s; r=s; } r->next=NULL; }
void dislist(node *&L) { node *p=L->next; while(p!=NULL) { printf("%d “,p->data); p=p->next; } printf(”"); }
void init(node *&L) { L=(node *)malloc(sizeof(node)); L->next=NULL; }
void destroylist(node *&L) { node *pre=L,*p=L->next; while(p!=NULL) { free(pre); pre=p; p=pre->next; } free(pre); }
bool listempty(node *&L) { return (L->next==NULL); }
int listlength(node *&L) { int n=0; node *p=L; while(p->next!=NULL) { n++; p=p->next; } return n; }
bool getelem(node *L,int i,int &e) { int j=0; node *p=L; if(i<=0) return false; while(j<=i&&p!=NULL) { j++; p=p->next; } if(p==NULL) return false; else { e=p->data; return true; } }
int locateelem(node *&L,int e) { int i=1; node *p=L->next; while(p!=NULL&&p->data!=e) { p=p->next; i++; } if(p==NULL) return 0; else return i; }
bool listinsert(node *&L,int i,int e) { int j=0; node *p=L,*s; if(i<=0) return false; while(j { j++; p=p->next; } if(p==NULL) return false; else { s=(node *)malloc(sizeof(node)); s->data=e; s->next=p->next; p->next=s; return true; } }
bool listelete(node *&L,int i,int &e) { int j=0; node *p=L,*q; if(i<=0) return false; while(j { j++; p=p->next; } if(pNULL) return false; else { q=p->next; if(qNULL) return false; e=q->data; p->next=q->next; free(q); return true; } }
int main() { int e; node *L; init(L); int n; int a[1000]; cin>>n; for(int i=0;i cin>>a[i]; creatlist1(L,a,n); dislist(L); creatlist2(L,a,n); dislist(L);
if(listempty(L))
{
cout<
dislist(L);
destroylist(L);
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정수 반전Udemy 에서 공부 한 것을 중얼거린다 Chapter3【Integer Reversal】 (예) 문자열로 숫자를 반전 (toString, split, reverse, join) 인수의 수치 (n)가 0보다 위 또는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.