-
线性表的顺序存储
#ifndef __MY_SEQLIST_H__
#define __MY_SEQLIST_H__
typedef void SeqList;
typedef void SeqListNode;
//链表 创建
SeqList* SeqList_Create(int capacity);
//链表 销毁
void SeqList_Destroy(SeqList* list);
//链表 清空
void SeqList_Clear(SeqList* list);
//链表 长度
int SeqList_Length(SeqList* list);
//链表 容量
int SeqList_Capacity(SeqList* list);
//链表 在某一个位置 插入元素
int SeqList_Insert(SeqList* list, SeqListNode* node, int pos);
//获取某一个位置的链表结点
SeqListNode* SeqList_Get(SeqList* list, int pos);
//删除某一个位置的结点
SeqListNode* SeqList_Delete(SeqList* list, int pos);
#endif //__MY_SEQLIST_H__
- 2022-09-14 04:45:03下载
- 积分:1
-
06-02-2015_05-43-24
c++ lession
10 chapters
Implement a template class EnhancedSafeArray, which is a type of SafeArray. The class SafeArray implementation is given in safearray.h. Class SafeArray is a class that wraps a regular C++ array. It is considered a safe array class since it handles out of bounds array indexing through exception handling. Your class EnhancedSafeArray will augment the class SafeArray by supporting a copy constructor, a method to return the size of the array, an assignment operator, and an equality test operator.
- 2015-02-23 23:58:22下载
- 积分:1
-
C-Interfaces-and-Implementation
本书介绍了C语言接口与实现,讲解了创建可重用软件的技术。(The book describes the C language interface and implementation to explain the technology to create reusable software.)
- 2013-01-06 14:58:41下载
- 积分:1
-
28377d_adc
TMS320F28388D的ADC的A通道采样代码(The code is about 28388D ADC)
- 2018-05-22 14:10:22下载
- 积分:1
-
24K-pony-remote-control-source
24k小马远控,绝对无后门,抓鸡必备利器!没做免杀,养鸡专业户,功能也很多(24K pony remote control, absolutely no back door, grasps the chicken sharp weapon! Do not kill, chicken farmer, the function is also a lot of)
- 2015-01-24 23:21:55下载
- 积分:1
-
oneday
定义日期类Date。要求:
(1)可以设置日期;
(2)日期加一天操作;
(3)输出函数,输出格式为“XXXX年XX月XX日”;
(4)编写主函数,定义对象,完成相应功能。
(The definition of the date of type Date. Requirements: (1) can set the date (2) date-plus-one operation (3) the output function, output format for the " XXXX in XX on XX date" (4) the preparation of the main function, the definition of the object, the completion of the corresponding function.)
- 2009-05-21 23:02:48下载
- 积分:1
-
cjson
说明: lua的 json解析库,与原生lua库快速的集成(a json parse for lua use c/c++)
- 2020-06-22 23:40:01下载
- 积分:1
-
dsp实现Fir滤波
本程序可以实现在dsp中实现fir滤波,可以进行调试编写,对大部分dsp均可以实现,并且可以实现在dsp上实时进行调试
- 2022-01-25 18:23:53下载
- 积分:1
-
algoritmo de la funcióNφde欧拉
El CóDIGO presentado一continuación:
- 2022-11-29 22:00:04下载
- 积分:1
-
shichong-3.1不规则边坡建模
石崇老师编的PFC建立不规则边坡模型的代码(Code for establishing irregular slope model by PFC compiled by Shi Chong)
- 2020-06-18 05:20:02下载
- 积分:1