摘要:
VNC CentOS版本 [root@Python ~]# cat /etc/redhat-release CentOS Linux release 7.6.1810 (Core) 环境 [root@Python ~]# yum upgrade [root@Python ~]# yum -y gro 阅读全文
摘要:
cppreference Container Built-in Types Abstract Data Types defined directly by C++ language defined by standard libraty repersents computer hardware fa 阅读全文
摘要:
C++中的值类别 | stackoverflow | OI-Wiki | cpprefer int foo(int &x){ foo(++x); foo(x++); } 阅读全文
摘要:
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 阅读全文
摘要:
references C++语言文档MS Unresolved questions Do main with parameter:char *argc, char *argv Undefined-behavior Statically-typed language 强类型、弱类型、静态类型、动态类型 阅读全文
摘要:
平均时间复杂度 最好情况 最坏情况 空间复杂度 排序方式 稳定性 选择排序 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- 阅读全文
摘要:
Polish Calculator Infix->Postfix Rules: number → postfix stack ( → opera stack ) → pop opera stack until ( +-*/ → pop greater or equal priority operat 阅读全文
摘要:
首先根据Tools Used in 6.828来安装qemu: git clone git://github.com/mit-pdos/6.828-qemu.git qemu 但是,总是EOF错误,文件过大 于是参考了这篇第一种方法:解决git clone大文件EOF错误问题 先导入到码云,在更换g 阅读全文
摘要:
在使用Layui的table元素时,传入的json的数据格式是有其自身定义的,需要另外添加一些字符,以正确传入。 为了传入符合前端格式的数据: table.render({ elem: '#test' ,url:'http://localhost:8080/pictures' ,toolbar: ' 阅读全文
摘要:
目前了解的springboot中IOC注解主要分为两类: 1. 注册bean:@Component和@Repository、@Service、@Controller 、@Configuration 共同之处:这些注解都使用在类上,将类标识为Bean,由Spring扫描到后会生成一个单例bean放到容 阅读全文