摘要: 栈是一种后进先出(LIFO)的数据结构 当熟悉了之后也可以去调用其他类似的api来完成逻辑 template<class T> class QStack : public QVector<T> { public: // compiler-generated special member functi 阅读全文
posted @ 2022-08-20 19:10 大王怕我去巡山 阅读(50) 评论(0) 推荐(0)
摘要: 一、使用anaconda搭建python环境 conda info --env 查看环境 conda remove -n web --all 删除环境 conda create --name python python=3.8 创建名为python的虚拟环境 # To activate this e 阅读全文
posted @ 2022-08-20 16:21 大王怕我去巡山 阅读(78) 评论(0) 推荐(0)