데이터 구조 단일 체인 테이블 기본 조작

2300 단어 데이터 구조
#include #include #include using namespace std;
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;

}

좋은 웹페이지 즐겨찾기