
链表
Wang__Hao
这个作者很懒,什么都没留下…
展开
-
timelist
#include<stdio.h>#include<stdlib.h> typedef struct Node* NodePtr;typedef void (*callback)(void *) ;typedef struct Node{ int data; callback callfun; void * userdata; NodePtr prev;...原创 2019-05-04 22:37:24 · 989 阅读 · 0 评论 -
node
//实现在输入时自动排序(由小到大)#include <stdlib.h>#include <stdio.h>#include <string.h>typedef void(*backcall)(void *);typedef struct node{ backcall fun; void* userdata; int data; st...原创 2019-05-06 21:41:36 · 166 阅读 · 0 评论 -
node max->min
//实现在输入时自动排序(由小到大)#include <stdlib.h>#include <stdio.h>#include <string.h>typedef void(*backcall)(void *);typedef struct node{ backcall fun; void* userdata; int data; st...原创 2019-05-06 22:33:13 · 597 阅读 · 0 评论