这篇博客用来记录stack,queue的学习。
stack的模拟实现
stack的模拟实现比较简单,先上代码
#pragma once
#include<vector>
#include<list>
#include<deque>
#include<iostream>
using std::deque;
using namespace std;name…
基本数据类型的转换(不是重点)
int i 42;
double d i; // int 自动转换为 double
类类型转换:
如果一个类定义了接受单一参数的构造函数(且该构造函数未被声明为 explicit),那么该构造函数可以被用来进行隐式转换,可以理解为int被隐式转…