DNS servers in China https://public-dns.info/nameserver/cn.html How to easily set up a static ip address in Ubuntu using the GUI(12.04) https://www.yo ...
分类:
系统相关 时间:
2020-06-17 13:00:55
阅读次数:
53
using Newtonsoft.Json; using Newtonsoft.Json.Converters; using Newtonsoft.Json.Linq; using System.Collections.Generic; using System.Data; namespace Co ...
分类:
Web程序 时间:
2020-06-17 12:38:41
阅读次数:
85
如果不算数组开小和没开$long long$的话,我又是一遍过的。 思路很简单,考虑在线段树合并的时候,计算逆序对的贡献。 假设合并线段树$a$和$b$,则在区间$\left[l,r\right]$的时候, $a$在前所产生的逆序对个数为$a$的右子树的大小乘以$b$的左子树的大小。 $b$在前所产 ...
分类:
其他好文 时间:
2020-06-17 12:30:33
阅读次数:
40
Building an OpenFlow Switch with Integrated Controller and IDS/IPS This post describes steps to build an OpenFlow switch using Open vSwitch on a serve ...
分类:
其他好文 时间:
2020-06-17 10:57:18
阅读次数:
49
1 #include <iostream> 2 #include <cstdio> 3 #include <algorithm> 4 5 using namespace std; 6 7 const int N = 110; 8 int f[N][N]; 9 10 //核心想法://i到达j经过前k ...
分类:
其他好文 时间:
2020-06-17 01:51:16
阅读次数:
67
using System; using System.Collections.Generic; namespace ConsoleApp2 { class Program { static void Main(string[] args) { App app = new App(); app.Use ...
分类:
Web程序 时间:
2020-06-16 23:23:04
阅读次数:
83
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Data; namespace MSCTool { p ...
分类:
编程语言 时间:
2020-06-16 23:16:15
阅读次数:
102
报错如下 [Drc 23-20] Rule violation (NSTD-1) Unspecified I/O Standard - 4 out of 142 logical ports use I/O standard (IOSTANDARD) value 'DEFAULT', instead ...
分类:
其他好文 时间:
2020-06-16 18:44:43
阅读次数:
152
为什么long_query_time设置了1秒,slow log中还会记录小于1秒的慢查询? 可能原因如下: 1、设置了全局的long_query_time未对当前连接生效。 2、打开了log_queries_not_using_indexes选项,记录了未走索引的SQL。 ...
分类:
其他好文 时间:
2020-06-16 18:28:12
阅读次数:
215
https://www.cnblogs.com/dream-game/p/5532506.html using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.T... ...