대화 데이터 구조 - 선형 표 - 체인 식 저장 소 전체 링크 삭제

728 단어 데이터 구조
#include<iostream>



#include<time.h>

#include <stdlib.h>



using namespace std;



#define OK 1

#define TRUE 1

#define FALSE 0

#define ERROR 0



typedef int status;//      

typedef int elemtype;//        



//    

typedef struct Node

{

	elemtype data;//  

	Node *next;//         

}Node;

typedef struct Node *sqlist;



status clearlist(sqlist *L)

{

	sqlist p,q;

	p=(*L)->next;//p       

	while(p)

	{

		q=p->next;// q  p           

		free(p);// p       

		p=q;// p              

	}

	(*L)->next=NULL;//       next    NULL

	return OK;

}







int main()

{





	system("pause");

	return 1;



}


좋은 웹페이지 즐겨찾기