⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 circular_dlist.h

📁 This is a binary search tree with void* pointer in data segment in order you to search store and del
💻 H
字号:
typedef struct Node {	int id;	struct Node* next;	struct Node* prev;	struct Node_sl* DocL;}Node_dl;unsigned int maxf; /*Call this to get a new Head*/Node_dl *CreateNew_dl(int id,int m);/*Insert a node with id o(n) because all list will be scanned	for duplicates*/int Insert_dl (int id);/*	Delete a Node by id. O(n)	Deleting last Node in a list will cause list to be also 	deleted.So you have to re-create it.*/int Delete_dl(int id);/*Try find the Node with id.If not present, return Null*/Node_dl *Find_dl(int id);/*Print list from head Node..(Or anything else xD);*/void print_dl(void);  /*insert file*/int Insert_File(int id, int type) ;/*Delete file*/int Delete_File(int id) ;int Find_File(int id) ;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -