摘要: 1. 关于Nginx操作 打开操作 关闭/重启操作 2. 关于Springboot操作 关闭服务器也继续运行 nohup java -jar api.2.0.1.jar & 阅读全文
posted @ 2022-04-02 02:28 火星架构师 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 只需要增加 -no-check-certificate wget --no-check-certificate http://www.openssl.org/source/openssl-1.0.1j.tar.gz 阅读全文
posted @ 2022-04-02 01:14 火星架构师 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 定义 求多源带权最小距离(允许有负值,不允许有负环路)(O(V3)) 注意 使用memset()函数初始化二维数组时要千万小心: 1.二维整型数组利用memset()函数初始化时,只能初始化为0或者-1,否则二维整型数组的值将为随机数。 2.二维char数组利用memset()函数初始化时不受限制, 阅读全文
posted @ 2022-03-11 23:47 火星架构师 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 定义 #include <bits/stdc++.h> using namespace std; const int MAXN = 100+10; struct Edge { int from; int to; int length; Edge(int f,int t,int l):from(f), 阅读全文
posted @ 2022-03-10 22:00 火星架构师 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 一个例子就能搞懂! 阅读全文
posted @ 2022-03-07 21:15 火星架构师 阅读(629) 评论(1) 推荐(0) 编辑
摘要: 数据库概念辨析 阅读全文
posted @ 2022-03-06 11:15 火星架构师 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 判断无损连接分解 阅读全文
posted @ 2022-03-06 10:21 火星架构师 阅读(1335) 评论(0) 推荐(1) 编辑
摘要: 闭包、候选码、主属性、主码练习 阅读全文
posted @ 2022-03-05 20:15 火星架构师 阅读(2360) 评论(0) 推荐(0) 编辑
摘要: 贪心策略——多重背包 阅读全文
posted @ 2022-03-05 18:28 火星架构师 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 动态规划——0-1背包问题 阅读全文
posted @ 2022-03-05 16:30 火星架构师 阅读(145) 评论(0) 推荐(0) 编辑