mysql版本分为企业版(Enterprise)和社区版(Community),其中社区办是通过GPL协议授权的开源软件,可以免费使用,而企业版是需要收费的商业软件。 mysql官网 https://www.mysql.com/ ,进去点击 download 下拉滚动到最后,看到 MySQL Com ...
分类:
数据库 时间:
2019-08-29 00:21:27
阅读次数:
170
mysqld --initialize-insecure --user=mysql 直接复制上面这条命令 然后cmd进入到 mysql解压出来bin的目录中: 等待一会 就发发现data的这个目录了! ...
分类:
数据库 时间:
2019-08-28 12:49:45
阅读次数:
91
题目描述: There are n houses in a village. We want to supply water for all the houses by building wells and laying pipes. For each house i, we can either ...
分类:
其他好文 时间:
2019-08-27 01:10:29
阅读次数:
122
1、先创建 activity_water_fall.xml 和 activity_water_fall_item.xml 2、创建Adapter 3、WaterFallActivity.java ps:图片路径,直接复制到drawable目录里面: 4、效果: ...
分类:
移动开发 时间:
2019-08-25 15:39:43
阅读次数:
1075
when I get out of bed in the morning, the first thing I do is pull out my toothbrush and toothpaste. then I turn on the faucet, run some water over my ...
分类:
其他好文 时间:
2019-08-25 00:39:17
阅读次数:
95
https://leetcode-cn.com/problems/trapping-rain-water/ 给定 n 个非负整数表示每个宽度为 1 的柱子的高度图,计算按此排列的柱子,下雨之后能接多少雨水。 上面是由数组 [0,1,0,2,1,0,1,3,2,1,2,1] 表示的高度图,在这种情况下 ...
分类:
其他好文 时间:
2019-08-24 18:19:13
阅读次数:
93
Given n non-negative integers a1, a2, ..., an , where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endp ...
分类:
其他好文 时间:
2019-08-24 09:36:23
阅读次数:
50
[TOC] 一、正则表达式 正则表达式本身是一种小型的、高度专业化的编程语言,它并不是Python的一部分。 如果已经在其他语言里使用过正则表达式,只需要简单看一看就可以上手了。 而在python中,通过内嵌集成 re模块 ,程序员们可以直接调用来实现 正则匹配 。 正则表达式的大致匹配过程是:依次 ...
分类:
其他好文 时间:
2019-08-23 22:39:27
阅读次数:
119
idea 调试工具的使用 原文:https://blog.csdn.net/hao_hl1314/article/details/53120918 Intellij IDEA Debug调试区工具的使用方法 快捷键F9 resume programe 恢复程序 Alt+F10 show execut ...
分类:
其他好文 时间:
2019-08-21 11:49:16
阅读次数:
75
看到最小值最大/最大值最小一定要往二分答案上想,想了肯定不会吃亏。 二分答案的优越性在于正难则反的思想,如果从已知条件无法得出最优解,那么就假定一个解看是否与已知条件相悖。 部分看似要二分答案的题可以用最小生成树解决。比如模拟赛23的water,最终高度其实就是从一个格子走出去的路径上最大值的最小解 ...
分类:
其他好文 时间:
2019-08-18 09:42:26
阅读次数:
77