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

📄 listops.h

📁 数据挖掘中的关联规则算法
💻 H
字号:
/*----------------------------------------------------------------------  File    : listops.h  Contents: some special list operations  Author  : Christian Borgelt  History : 02.11.2000 file created from file lists.h----------------------------------------------------------------------*/#ifndef __LISTOPS__#define __LISTOPS__/*----------------------------------------------------------------------  Type Definitions----------------------------------------------------------------------*/typedef struct _le {            /* --- a list element --- */  struct _le *succ;             /* pointer to successor */  struct _le *pred;             /* pointer to predecessor */} LE;                           /* (list element) */typedef int LCMPFN (const void *p1, const void *p2, void *data);/*----------------------------------------------------------------------  Functions----------------------------------------------------------------------*/extern void* l_sort    (void *list, LCMPFN cmpfn, void *data);extern void* l_reverse (void *list);#endif

⌨️ 快捷键说明

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