2022年1月11日
摘要: /* ADT List{ 基本操作: 12个 InitList(&L) 操作结果 构造一个空的线性表L DestoryList(&L) 初始条件 线性表L已存在 操作结果 销毁线性表L ClearList(&L) 初始条件 线性表L已存在 操作结果 将L重置为空表 ListEmpyt(L) 初始条件 阅读全文
posted @ 2022-01-11 21:41 Rabbit_XIN 阅读(91) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <semaphore.h> #include <pthread.h> #include <stdlib.h> #include <unistd.h> #include <sys/syscall.h> // 系统分配线程 和代码顺序无关 sem_ 阅读全文
posted @ 2022-01-11 16:11 Rabbit_XIN 阅读(31) 评论(0) 推荐(0)