字典树都是跟的这个博客学的→:https://blog.csdn.net/qq_38891827/article/details/80532462 这些题目也都是他里面的题目,就是把题目按难度排了个序 + 自己整理了下思路(代码也差不多 主要是为了记录一下 忘了的话以后可以翻翻看hhh 模板 con ...
分类:
其他好文 时间:
2019-04-13 09:12:39
阅读次数:
153
https://pubs.vmware.com/vsphere-50/index.jsp?topic=%2Fcom.vmware.vsphere.introduction.doc_50%2FGUID-A8B8E6DC-A881-4F14-AEC1-D17365731E68.html VMware v ...
分类:
系统相关 时间:
2019-04-12 19:11:14
阅读次数:
602
在编写程序时遇到一个问题,需要把一个19为的字符串转换为16进制。不想使用分段转换,想一次性的全部转换。 C#中支持9种整型:sbyte,byte,short,ushort,int,uint,long,ulong和char。 Sbyte:代表有符号的8位整数,数值范围从-128 ~ 127 Byte ...
分类:
其他好文 时间:
2019-04-12 13:46:36
阅读次数:
121
把语言环境变量改为英文 将Ubuntu系统语言环境改为英文的en_US.UTF-8 查看当前系统语言环境 locale 编辑配置文件,将zh_US.UTF-8改为en_US.UTF-8,zh改为en sudo nano /etc/default/locale LANG="en_US.UTF-8" L ...
分类:
其他好文 时间:
2019-04-12 12:01:27
阅读次数:
174
WeUI 是一套同微信原生视觉体验一致的基础样式库,由微信官方设计团队为微信内网页和微信小程序量身设计,令用户的使用感知更加统一; 包含button、cell、dialog、 progress、 toast、article、actionsheet、icon等各式元素; 一、扩展 操作文档手册: we ...
分类:
微信 时间:
2019-04-11 16:26:12
阅读次数:
439
http://poj.org/problem?id=2195 Description On a grid map there are n little men and n houses. In each unit time, every little man can move one unit st ...
分类:
其他好文 时间:
2019-04-08 21:10:29
阅读次数:
157
类定义(课下选做) 要求: Book类包含书名,作者,出版社和出版日期 数据都要定义getter和setter 至少三个构造方法,接收并初始化这些数据 覆盖toString方法,返回良好的含有多行的书的描述信息 覆盖equals方法,书名,作者,出版社和出版日期完全一致才说明两本书是一样的。 创建一 ...
分类:
其他好文 时间:
2019-04-07 14:30:43
阅读次数:
154
Queues and Priority Queues are data structures which are known to most computer scientists. The Team Queue, however, is not so well known, though it o ...
分类:
其他好文 时间:
2019-03-31 19:22:08
阅读次数:
134
package yanghuisanjiao; import java.util.Scanner; public class yiweishuzu {public static void main(String[] args) { @SuppressWarnings("resource")Scann ...
分类:
编程语言 时间:
2019-03-31 19:19:18
阅读次数:
193