
数据结构及算法
数据结构和算法
rookieZ12138
爱编程,爱生活
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
慕课网关于线性表通讯录代码
demo.cpp#include <iostream> #include <string> #include "LinkedList.h" using namespace std; int menu(){ cout<<"功能菜单"<<endl; cout<<"1.新建联系人"<<en原创 2018-02-12 15:05:46 · 321 阅读 · 0 评论 -
C++基本数据类型大小及表示范围
ANSI C/C++基本数据类型:TypeSize数值范围无值型void0 byte无值域布尔型bool1 bytetrue false有符号短整型short [int] /signed short [int]2 byte-32768~32767无符号短整型unsigned short [int]2 byte0~65535有符号整型int /signed [int]...原创 2018-02-25 13:33:54 · 3049 阅读 · 0 评论