首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴W192547975的代码贴全部
/*--------------------------------list.h--------------------------------*/

/*
Remember:
If you want to delete a node or a list,
you should delete things that in this node or in this list at first.
You don't need to use function list_add.
Use typedef when you have a complex type!
*/

#ifndef _LIST_H
#define _LIST_H
......................
阅读全部 | 2022年8月23日 19:42
#include <stdio.h>
#include <stdlib.h>
#include <time.h>

int main(void)
{
clock_t c,l;
long n;
l=0L;

for(n=0;1;n++)
{
......................
阅读全部 | 2021年3月7日 10:05
1
W192547975