cp /usr/share/openldap-servers/DB_CONFIG.example /var/lib/ldap/DB_CONFIG /etc/init.d/slapd stop rm -rf /var/lib/ldap/* rm -rf /etc/openldap/slapd.d/* ...
分类:
其他好文 时间:
2020-06-21 15:41:36
阅读次数:
74
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document< ...
分类:
其他好文 时间:
2020-06-21 15:29:25
阅读次数:
47
#include<map> #include<queue> #include<time.h> #include<limits.h> #include<cmath> #include<ostream> #include<iterator> #include<set> #include<stack> # ...
分类:
移动开发 时间:
2020-06-21 14:06:53
阅读次数:
54
在数据量大的时候,需要使用文件参数化。 excel文件是其中一种。 安装xlrd读取excel文件。(这里是在pycharm安装) 发现选择豆瓣安装失败,阿里云安装成功。 准备excel文件,放在test_data目录下 在common目录下定义函数 import xlrd def get_exce ...
分类:
其他好文 时间:
2020-06-21 12:08:00
阅读次数:
98
bool isValid(char * s){ char a[3500]; int current = -1; for(int i = 0;i < strlen(s);i++){ if(s[i] == '(' || s[i] == '[' || s[i] == '{'){ current++; a[ ...
分类:
其他好文 时间:
2020-06-21 10:13:03
阅读次数:
63
创建 CREATE DATABASE test DEFAULT CHARACER SET utf8 COLLATE utf8_general_ci; 修改 ALTER DATABASE test DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; ...
分类:
数据库 时间:
2020-06-21 10:09:10
阅读次数:
112
数字 n 代表生成括号的对数,请你设计一个函数,用于能够生成所有可能的并且 有效的 括号组合。 ...
分类:
其他好文 时间:
2020-06-21 09:14:33
阅读次数:
62
Reset Type 有三种: Mixed 默认方式,只保留源码,回退 commit 和 index 信息 Soft 回退到某个版本,只回退了 commit 的信息,之前写的代码还是保留的,不会恢复到 index file 一级。如果还要提交,直接 commit Hard 彻底回退,本地源码也会变成 ...
分类:
其他好文 时间:
2020-06-20 22:22:56
阅读次数:
80
在图像处理领域中,特征点又被称为兴趣点或者角点,它通常具有旋转不变性和光照不变性和视角不变性等优点,是图像的重要特征之一,常被应用到目标匹配、目标跟踪、三维重建等应用中。点特征主要指图像中的明显点,如突出的角点、边缘端点、极值点等等,用于点特征提取的算子称为兴趣点提取(检测)算子,常用的有Harri... ...
分类:
其他好文 时间:
2020-06-20 21:22:49
阅读次数:
67
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to ...
分类:
数据库 时间:
2020-06-20 21:12:23
阅读次数:
79