中国大学MOOC-陈越、何钦铭-数据结构-2018春 第二讲课后习题第一题 ...
分类:
其他好文 时间:
2018-03-14 22:09:11
阅读次数:
251
[抄题]: Given two binary trees and imagine that when you put one of them to cover the other, some nodes of the two trees are overlapped while the others ...
分类:
其他好文 时间:
2018-03-14 15:09:17
阅读次数:
135
转:http://blog.chinaunix.net/uid-20940095-id-4144300.html 1. openstack 鉴权简单介绍 众所周知,openstack通过keystone用来完成authenticate(认证),真正的鉴权(authorize)是在各个模块分别做的,具 ...
分类:
其他好文 时间:
2018-03-13 15:41:34
阅读次数:
249
include:方便复杂布局的重用,使得布局模块化。最常使用到的地方如在每个Activity中加入统一的状态栏。merge:减少include之后的布局层级。ViewStub:提高布局初次加载性能。常用语网络加载失败页,按需加载View等。include、merge:官方对<merge/>的介绍中使用vertical的LinearLayout。当需要include的Layout也是ve
分类:
其他好文 时间:
2018-03-13 15:34:57
阅读次数:
162
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements, 出现这个问题怎么办? 为了加强安全性,MySQL5.7为root用户随机生成了一个密码,在error log中,关于error lo ...
分类:
数据库 时间:
2018-03-13 12:16:17
阅读次数:
500
CPU 调度 调度算法 (指标:average waiting time) 调度policy 和 调度mechanism 分离:支持用户自定义。 ...
分类:
其他好文 时间:
2018-03-12 23:02:55
阅读次数:
341
select fk.name fkname ,ftable.name ftablename ,cn.name fkcol ,rtable.name ftablename ,cn1.name rkcolfrom sysforeignkeys join sysobjects fk on sysforei ...
分类:
其他好文 时间:
2018-03-12 12:08:13
阅读次数:
166
1.冒泡排序Bubble Sort 2.选择排序Selection Sort 3.插入排序Insertion Sort 4.希尔排序Shell Sort 5.归并排序Merge Sort 后边的会陆续更新 ...
分类:
编程语言 时间:
2018-03-11 22:35:26
阅读次数:
243
1 #include 2 #define MAX 5000003 3 #define SENTINEL 2000000000 4 using namespace std; 5 6 int L[MAX / 2 + 2], R[MAX / 2 + 2]; 7 int cnt; 8 9 void merg... ...
分类:
编程语言 时间:
2018-03-11 19:10:48
阅读次数:
200
javascript实现合并对象的方法有很多种,比如: 1、Object.assign 2、jQuery.extend(jQuery也是用javascript写的,谢谢) 3、lodash系列(lodash.merge、lodash.assign等,至于区别自己看文档,文档地址:https://lo ...
分类:
编程语言 时间:
2018-03-11 17:32:34
阅读次数:
420