Eureka原理 1.基本原理上图是来自eureka的官方架构图,这是基于集群配置的eureka;处于不同节点的eureka通过Replicate进行数据同步Application Service为服务提供者Application Client为服务消费者Make Remote Call完成一次服务 ...
分类:
其他好文 时间:
2020-07-27 15:51:57
阅读次数:
180
首先,明显的网络流。那么如何建边,对于每个二次函数在[1,m]里挑n个函数值最小的点, 这样子一共n^2个点,注意还要去重。这n^2个点其实就能使得n个二次函数(a, b, c)完全匹配。 那么流量全部设为1,费用是对应的函数值。超级源点和终点费用为0;但是,跑n次费用流时间不允许,但是你仔细想每次 ...
分类:
其他好文 时间:
2020-07-27 15:49:36
阅读次数:
71
跳石头 简单的二分答案,贪心地判断解 #include<bits/stdc++.h> #define fi first #define se second #define pb push_back #define mp make_pair #define SZ(x) ((int)x.size()) ...
分类:
其他好文 时间:
2020-07-26 23:05:34
阅读次数:
73
结构体内的一些操作 重载 #include <bits/stdc++.h> using namespace std; struct test { int a, b; friend bool operator < (const test &x, const test &y) { return x.a ...
分类:
其他好文 时间:
2020-07-26 23:02:39
阅读次数:
72
Ubuntu 20.04 Install Guest Additions for VirtualBox时有报错: This system is currently not set up to build kernel modules.Please install the gcc make perl ...
分类:
系统相关 时间:
2020-07-26 23:00:43
阅读次数:
94
对于源文件较多的 c/c++项目,直接在 shell 中使用 gcc/clang 进行编译会十分麻烦,makefile 可以解决这一问题。Makefile 记录了项目的编译规则,当使用 make 命令进行项目的编译时,make 命令会使用 makefile 中记录的规则,一步步地编译、链接,生成目标 ...
分类:
其他好文 时间:
2020-07-26 15:40:29
阅读次数:
62
需要在 Linux 系统下先交叉编译好 mosquitto 再移植到开发板中,至于最后 PC 端使用 Linux 还是 Windows 都可以。 注意事先要配置好交叉编译环境 一、下载依赖包 编译 mosquitto 需要依赖 libuuid 和 openssl。因此需要下载下面三个文件,注意最好版 ...
分类:
其他好文 时间:
2020-07-26 01:22:19
阅读次数:
75
1.安装编译工具及库文件 # yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-devel pcre-devel gcc、gcc-c++ # 主要用来进行编译相关使用 openssl、openssl-devel # ...
分类:
其他好文 时间:
2020-07-25 23:57:46
阅读次数:
292
http://www.fftw.org/download.html wget http://www.fftw.org/fftw-3.3.8.tar.gz tar fftw-3.3.8.tar.gz cd ./fftw-3.3.8 ./configure make sudo make install ...
分类:
系统相关 时间:
2020-07-25 11:31:34
阅读次数:
191
软件下载地址:https://www.mongodb.com/try/download/community 提供了二进制执行版,不需要make安装,将解压好的内容,直接移动到软件安装目录即可。 在软件安装目录(/usr/local/src)下创建一个名为mongodb的软连接 ln -s mongo ...
分类:
数据库 时间:
2020-07-24 21:21:37
阅读次数:
88