#include <event2/event.h> #include <event2/listener.h> #include <string.h> #include <iostream> #include <signal.h> #define SPORT 5001 using namespace ...
分类:
其他好文 时间:
2020-06-07 12:38:01
阅读次数:
105
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1527 代码如下: #include<bits/stdc++.h> using namespace std; typedef unsigned int ui; typedef long long ll; ...
分类:
其他好文 时间:
2020-06-06 18:18:17
阅读次数:
60
问题 在cmd中命令运行都是正常的,但是在vscode中就报错了,一脸懵,错误如下 解决方案 经过了多方百度查找,最终终于解决了输入命令Set-ExecutionPolicy -Scope CurrentUser然后再输入RemoteSigned成功解决 ...
分类:
Web程序 时间:
2020-06-06 11:20:07
阅读次数:
134
今天的内容主要和一些依赖有关, //Glide依赖implementation 'com.github.bumptech.glide:glide:4.11.0'//Google Design依赖//noinspection GradleCompatibleimplementation 'com.an ...
分类:
移动开发 时间:
2020-06-05 22:54:28
阅读次数:
91
RabbitMQ+Redis模拟手机验证码登录 依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-amqp</artifactId> </dependency> <d ...
分类:
移动开发 时间:
2020-06-04 14:02:14
阅读次数:
74
记一次运行工厂类实例 ShapeFactoryDemo 排错 问题描述 对设计模式的工厂模式进行实例运行,发现声明接口类型的引用对象获取到 getShape() 方法返回的值是 null 而不是预想的 Shape 接口的实现类的实例对象 工厂模式--UML图 开发工具 IntellJ IDEA 控制 ...
分类:
其他好文 时间:
2020-06-04 10:42:30
阅读次数:
73
转自:https://blog.csdn.net/scarecrow_byr/article/details/48625085 linux syscon and regmap study note-v0.1 2015.9.19 Sherlock draft1. What is regmap and ...
分类:
系统相关 时间:
2020-06-04 10:39:23
阅读次数:
103
package com.tencent.wework.api.lcx; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; import java.util.Iterator; impo ...
分类:
移动开发 时间:
2020-06-04 10:32:20
阅读次数:
196
1.摘要: 关于LIS部分,本篇博客讲一下LIS的概念定义和理解,以及求LIS的三种方法,分别是O(n^2)的DP,O(nlogn)的二分+贪心法,以及O(nlogn)的树状数组优化的DP,最后附上几道非常经典的LIS的例题及分析。 2.LIS的定义: 最长上升子序列(Longest Increas ...
分类:
其他好文 时间:
2020-06-04 01:48:57
阅读次数:
91