摘要:
#include<iostream> #include<map> #include<algorithm> using namespace std; void func(pair<int, char> t) { cout << "key: " << t.first << " value: " << t 阅读全文
摘要:
#include<iostream> #include<algorithm> #include<list> using namespace std; struct Node { char a; int b; }; void func(Node &t) { cout << t.a << " " << 阅读全文
摘要:
两个div设置行内块属性,内外边距已经设置为0了,但是两个div之间为什么还有间隙呢?修改如下 将body中的连个div设置为一行就可以了。 阅读全文
摘要:
#include<iostream> #include<vector> using namespace std; struct STU { int a; }; int main() { vector<int> vec1; //vector 中的结构可以是C C++所有的基础类型 vector<cha 阅读全文
摘要:
#include #include using namespace std; int* make_pmt(const char *p) //得到回溯的数组 { unsigned int len = strlen(p); int *ret = static_cast(malloc(sizeof(int)*len)); if (NULL != ret) { ... 阅读全文
摘要:
哈希函数的特性: 哈希函数的输入是无穷的 哈希函数的输出是有限的 哈希函数对于同一个数据,返回的结果是一样的,不是随机的 由于输入是无穷的,输出是有限的,则必然多个输入会对应同一个输出 哈希函数的返回具有离散型,对于很多个不同的输入,一定会出现相同的输出,相同的输出具有均匀分布的特点 (加入输入是( 阅读全文
摘要:
创建一颗二叉树使用递归版实现前中后序遍历这颗二叉树和使用队列实现层序遍历 #include<iostream> #include<queue> #include<cstdio> using namespace std; struct TreeNode { char data; TreeNode *l 阅读全文
摘要:
#include<iostream> #include<string> using namespace std; int main() { //string构造函数 string str1; cout << str1.c_str() << endl; //c_str 返回一个const char * 阅读全文