posted @ 2016-09-01 17:55 洪爵士 阅读(6796) 评论(0) 推荐(0) 编辑
摘要:
前言 字也叫Word 字节也叫Byte 位也叫bit1个字=2个字节1个字节=8位1K=1024B1M=1024K1G=1024M1T=1024G 16位编译器char :1个字节char*(即指针变量): 2个字节short int : 2个字节int: 2个字节unsigned int : 2个 阅读全文
摘要:
SeqStack.h文件 SeqStack.c文件 testSeqStack.c文件测试栈的顺序存储 阅读全文
posted @ 2016-06-01 13:19 洪爵士 阅读(150) 评论(0) 推荐(0) 编辑
摘要:
LinkStack.h文件 LinkStack.c文件 testLinkStack.c文件为了测试栈的链式存储 阅读全文
posted @ 2016-06-01 13:16 洪爵士 阅读(191) 评论(0) 推荐(0) 编辑
摘要:
SeqQueue.h文件 SeqQueue.c文件 testSeqQueue.c文件为了测试队的顺序存储 阅读全文
posted @ 2016-06-01 13:11 洪爵士 阅读(157) 评论(0) 推荐(0) 编辑
摘要:
LinkQueue.h LinkQueue.c testLinkQueue.c测试队的链式存储 阅读全文
posted @ 2016-06-01 13:08 洪爵士 阅读(159) 评论(0) 推荐(0) 编辑
摘要:
MyVector.h //模板类,不要分开多文件去写。要类的声明和类函数的实现体放在一个文件中去写。这里没有分开写//如果要岔开写的的,需要将实现体的文件 #include进来(即实现函数的.cpp文件)。 test_MyVector.cpp测试数组模板 阅读全文
posted @ 2016-06-01 12:51 洪爵士 阅读(146) 评论(0) 推荐(0) 编辑
摘要:
MyString.h MyString.cpp TestMyString.cpp测试字符串类 阅读全文
posted @ 2016-06-01 12:45 洪爵士 阅读(132) 评论(0) 推荐(0) 编辑