一,回忆链表 链表,别名链式存储结构或单链表,用于存储逻辑关系为 "一对一" 的数据。与顺序表不同,链表不限制数据的物理存储状态,换句话说,使用链表存储的数据元素,其物理存储位置是随机的。 例如,使用链表存储 {1,2,3},数据的物理存储状态如图 1 所示: 图 1 链表随机存储数据 我们看到,图 ...
分类:
其他好文 时间:
2019-05-03 18:24:55
阅读次数:
123
# -*- coding: utf-8 -*- """ Tencent is pleased to support the open source community by making 蓝鲸智云(BlueKing) available. Copyright (C) 2017 THL A29 Lim... ...
分类:
其他好文 时间:
2019-04-22 15:16:52
阅读次数:
147
1.变量的命名(): (1).可以包含数字、字母、下划线‘_’,但只能以字母和下划线‘_’开头,不能以数字开头! (2).变量的命名不能包含空格。 (3).不能将python中的关键字(reserve words)用来命名: 关键字如下: False class finally is return ...
分类:
编程语言 时间:
2019-04-21 17:26:23
阅读次数:
142
Econ 3818Spring 2019R data project Unlike your other R assignments, this assignment is individual work only. You may discuss your project with classma ...
分类:
其他好文 时间:
2019-04-19 20:04:25
阅读次数:
148
IP Address Classification 0、概要 An IP address is 32-bit long. IP addresses are classified into A, B, C, D, and E classes, as shown in the figure below. ...
分类:
其他好文 时间:
2019-04-06 09:28:13
阅读次数:
98
HTML 基本文档 <!DOCTYPEhtml><html><head><title>文档标题</title></head><body> 可见文本... </body></html> <!DOCTYPEhtml><html><head><title>文档标题</title></head><body> ...
分类:
Web程序 时间:
2019-04-05 21:30:20
阅读次数:
205
// main.cpp // 指针 // Created by mac on 2019/4/4. // Copyright ? 2019年 mac. All rights reserved. // 1.指针变量只用于存储内存地址,根据内存地址去查找里面存储的数据。 include using nam ...
分类:
其他好文 时间:
2019-04-04 20:22:14
阅读次数:
187
#include using namespace std; int main() { string s[82] = { /* * 固定报头: MQTT报文类型(1), 保留位 */ "0001 0000", // 剩余长度(80) "01010000", /* * 可变报头 */ // ... ...
分类:
其他好文 时间:
2019-04-01 22:39:22
阅读次数:
467
《条目三十:确保目标区间足够大》 在使用STL中的算法时,确保目标区间足够 大 ,这个 大 应该怎么理解? 在我看来就是,容器,在初始化时使用reserve()强制设定容器的容量,和在目标容器比源容器size()元素个数更小时,在使用的时候,如果是直接对目标容器操作,会由于目标容器与源容器大小不匹配 ...
分类:
其他好文 时间:
2019-04-01 01:03:46
阅读次数:
149