Loading...
C++正则表达式一、正则表达式是什么?正则表达式描述一种字符串匹配的模式。一般使用正则表达式主要是实现以下三个需求:检查一个字符串是否包含某种形式的子串将...
操作方法top 访问队头元素empty 队列是否为空size 返回队列内元素个数push 插入元素到队尾 (并排序)emplace 原地构造一个元素并插入...
1. 哈希表是什么哈希表(Hash table),也称散列表,是根据关键码的值而直接进行访问的数据结构。C++名字unordered_map或unorde...
#include <iostream> class myClass { public: static myClass * pmClas...
for (size_t i = 7; i >= 0; i--)//Master bit first// 高位先发送 { digita...