来自森大科技官方博客http://www.cnsendblog.com/index.php/?p=878一、MySQL5.1安装打开下载的安装文件,出现如下界面:mysql安装向导启动,点击“Custom”“next”继续如需改变安装目录,改一下这个就好了,其它的自己会变下面这个是设置mysql的数据库目录,默认是C:\ProgramData\MySQL\MySQLServer5.1\一定要记得改
分类:
数据库 时间:
2020-07-02 18:09:50
阅读次数:
76
插件 mSessionKeeper 保持 session alive 设置network.prefetch-next = false Firefox的预加载功能,当载入一个网页后,火狐会预加载你可能会打开的网页链接内容,如果你打开这个链接,网页就会很快加载。不过,很多时候这个功能是多余的,CUP和宽 ...
分类:
其他好文 时间:
2020-07-02 16:49:02
阅读次数:
65
底部1px虚线边框: .line { width: 100%; height: 100px; position:relative; border-left:1px dashed red; border-right:1px dashed red; } .line:after { content:''; ...
分类:
移动开发 时间:
2020-07-02 16:03:01
阅读次数:
55
O(1)的空间内合并两个链表 python class ListNode: def __init__(self, x): self.val = x self.next = None def merge(l1, l2): head = point = ListNode(0) while l1 and ...
分类:
其他好文 时间:
2020-07-02 09:27:37
阅读次数:
56
一、二叉树 二叉树的基本概念 二叉树是每个节点最多有两个子树的树结构。通常子树被称作“左子树”(left subtree)和“右子树”(right subtree)。 两种特殊的二叉树 满二叉树(Full Binary Tree) 一棵满二叉树就是高度为k,且拥有(2^k)-1个节点的二叉树,一棵满 ...
分类:
编程语言 时间:
2020-07-02 00:19:06
阅读次数:
58
方法1:递归 1 /* 2 public class ListNode { 3 int val; 4 ListNode next = null; 5 6 ListNode(int val) { 7 this.val = val; 8 } 9 }*/ 10 public class Solution ...
分类:
其他好文 时间:
2020-07-01 21:58:59
阅读次数:
44
FULL OUTER JOIN:SELECT column_name(s)FROM table1FULL OUTER JOIN table2ON table1.column_name=table2.column_name; Mysql中可以使用UNION,同时联合LEFT JOIN 与RIGHT J ...
分类:
数据库 时间:
2020-07-01 20:26:56
阅读次数:
95
Spring Boot has taken Spring framework to the next level. It has drastically reduced the configuration and setup time required for spring projects. Sp ...
分类:
数据库 时间:
2020-07-01 18:40:39
阅读次数:
64
栈(Stack) 队列(Queue) 线性表 链表 先进后出 先进先出 top (front,rear) (data,link) (prior,next) | 只能在表的一端进行插入和删除操作的线性表 | 只能在表的一端进行插入和在另一端进行删除操作的线性表 |允许在表内任一位置进行插入和删除|| ...
分类:
其他好文 时间:
2020-07-01 14:17:53
阅读次数:
74
方式介绍 1:Select next row: 选择下一行方法 Sequential 默认 顺序的,按照参数化的数据顺序,从上往下一个一个的来取。 Random 随机取,参数化中的数据,每次随机的从中抽取数据。 Unique 唯一,唯一的向下取值,只能被用一次。 2:Update value on: ...
分类:
其他好文 时间:
2020-07-01 12:43:59
阅读次数:
74