摘要: VNC CentOS版本 [root@Python ~]# cat /etc/redhat-release CentOS Linux release 7.6.1810 (Core) 环境 [root@Python ~]# yum upgrade [root@Python ~]# yum -y gro 阅读全文
posted @ 2021-08-10 09:12 楚不予 阅读(210) 评论(0) 推荐(0) 编辑
摘要: cppreference Container Built-in Types Abstract Data Types defined directly by C++ language defined by standard libraty repersents computer hardware fa 阅读全文
posted @ 2021-08-09 17:21 楚不予 阅读(30) 评论(0) 推荐(0) 编辑
摘要: C++中的值类别 | stackoverflow | OI-Wiki | cpprefer int foo(int &x){ foo(++x); foo(x++); } 阅读全文
posted @ 2021-08-09 17:20 楚不予 阅读(66) 评论(0) 推荐(0) 编辑
摘要: https://tlanyan.pp.ua/cpp-function-modifier-summary/ #include <bits/stdc++.h> using namespace std; #define PI 3.14 typedef int myint int main(){ const 阅读全文
posted @ 2021-08-09 17:19 楚不予 阅读(35) 评论(0) 推荐(0) 编辑
摘要: references C++语言文档MS Unresolved questions Do main with parameter:char *argc, char *argv Undefined-behavior Statically-typed language 强类型、弱类型、静态类型、动态类型 阅读全文
posted @ 2021-08-09 17:16 楚不予 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 平均时间复杂度 最好情况 最坏情况 空间复杂度 排序方式 稳定性 选择排序 O(n^2) O(n^2) O(n^2) O(1) in-place 不稳定 冒泡排序 O(n^2) O(n) O(n^2) O(1) in-place 稳定 插入排序 O(n^2) O(n) O(n^2) O(1) in- 阅读全文
posted @ 2021-08-09 17:07 楚不予 阅读(38) 评论(0) 推荐(0) 编辑
摘要: Polish Calculator Infix->Postfix Rules: number → postfix stack ( → opera stack ) → pop opera stack until ( +-*/ → pop greater or equal priority operat 阅读全文
posted @ 2021-08-09 17:00 楚不予 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 首先根据Tools Used in 6.828来安装qemu: git clone git://github.com/mit-pdos/6.828-qemu.git qemu 但是,总是EOF错误,文件过大 于是参考了这篇第一种方法:解决git clone大文件EOF错误问题 先导入到码云,在更换g 阅读全文
posted @ 2021-05-20 14:59 楚不予 阅读(272) 评论(0) 推荐(0) 编辑
摘要: 在使用Layui的table元素时,传入的json的数据格式是有其自身定义的,需要另外添加一些字符,以正确传入。 为了传入符合前端格式的数据: table.render({ elem: '#test' ,url:'http://localhost:8080/pictures' ,toolbar: ' 阅读全文
posted @ 2019-12-24 15:38 楚不予 阅读(7721) 评论(2) 推荐(0) 编辑
摘要: 目前了解的springboot中IOC注解主要分为两类: 1. 注册bean:@Component和@Repository、@Service、@Controller 、@Configuration 共同之处:这些注解都使用在类上,将类标识为Bean,由Spring扫描到后会生成一个单例bean放到容 阅读全文
posted @ 2019-12-24 15:21 楚不予 阅读(2977) 评论(0) 推荐(0) 编辑