摘要: stackar.h typedef int ElementType; /* START: fig3_45.txt */ #ifndef _Stack_h #define _Stack_h struct StackRecord; typedef struct StackRecord *Stack; i 阅读全文
posted @ 2020-09-19 23:43 模糊计算士 阅读(267) 评论(0) 推荐(0) 编辑
摘要: stackli.h typedef int ElementType; /* START: fig3_39.txt */ #ifndef _Stack_h #define _Stack_h struct Node; typedef struct Node *PtrToNode; typedef Ptr 阅读全文
posted @ 2020-09-19 23:12 模糊计算士 阅读(241) 评论(0) 推荐(0) 编辑
摘要: clock_t clock(void) 返回程序执行起(一般为程序开头),处理器时钟所使用的时间。 其中,clock_t 是一个长整型,它是一个适合存储处理器时间的类型。 clock() 的实际意义是指“进程启动到调用clock()函数经过了多少CPU时钟计时单元”,借助 CLOCKS_PER_SE 阅读全文
posted @ 2020-09-19 21:38 模糊计算士 阅读(2103) 评论(0) 推荐(0) 编辑