本文链接:https://blog.csdn.net/qq_15068711/article/details/54691934今天使用bcprov-jdk15on.jar包时,报以下错误: java.lang.SecurityException: JCE cannot authenticate th ...
分类:
其他好文 时间:
2019-08-28 22:43:32
阅读次数:
102
1.文件夹(库) 增: 改: 查: 删: 2.文件(表) 增: 改: 查: 删: 3.文件的一行内容 增: 改: 查: 删: 4.创建表的完整语法 5.整型类型 | 类型 | 大小 | 范围(有符号) | 范围(无符号)unsigned约束 | 用途 | | | | | | | | TINYINT ...
分类:
数据库 时间:
2019-08-28 14:37:47
阅读次数:
139
运行程序 flag显示乱码 IDA打开查看程序逻辑 1 unsigned int __fastcall sub_401000(int a1, char *a2) 2 { 3 int v2; // esi 4 char *v3; // eax 5 unsigned int v4; // ecx 6 u ...
分类:
其他好文 时间:
2019-08-27 21:11:06
阅读次数:
150
1.数据库的概念 2.Mysql5.6新特性 3.mysql存储引擎 4.修改表结构 5.查询操作 ...
分类:
数据库 时间:
2019-08-26 22:37:20
阅读次数:
96
std::string str; std::vector<unsigned char> buff; cv::imencode(".jpg", requestFace, buff); str.resize(buff.size()); memcpy(&str[0], buff.data(), buff. ...
分类:
Web程序 时间:
2019-08-26 21:23:21
阅读次数:
231
问题: mysql的字段,unsigned int(3), 和unsinged int(6), 能存储的数值范围是否相同。如果不同,分别是多大?int(0) 能存多少位数字? 不同,int(3)最多显示3位无符号整体,int(6)最多显示6位无符号数。 如果你的答案和上面的一致,恭喜你和我犯了一样的 ...
分类:
数据库 时间:
2019-08-25 00:28:41
阅读次数:
287
Reverse bits of a given 32 bits unsigned integer. Example 1: Example 2: Note: Note that in some languages such as Java, there is no unsigned integer t ...
分类:
其他好文 时间:
2019-08-24 15:30:08
阅读次数:
67
先存一下几个较难题的AC代码: 1002: 1005: 1008: ...
分类:
其他好文 时间:
2019-08-24 09:23:12
阅读次数:
94
思路:$DP$ 提交:$2$次 错因:高精写挂(窝太菜了) 题解: 观察可知$f[i]=2 f[i 1]+(n\&1)$ 高精的过程参考了 "WinXP@luogu" 的思路: 发现一个问题。每一项约等于前一项的 $2$ 倍。仔细分析,发现 $dp(n)=2dp(n 1)+ (n\& 1)?1:0$ ...
分类:
其他好文 时间:
2019-08-23 18:50:27
阅读次数:
73
在线计算:http://www.ip33.com/crc.html 原文链接:https://blog.csdn.net/liyuanbhu/article/details/7882789 写给嵌入式程序员的循环冗余校验(CRC)算法入门引导前言CRC校验(循环冗余校验)是数据通讯中最常采用的校验方 ...
分类:
其他好文 时间:
2019-08-22 18:34:44
阅读次数:
131