具体详情参考:http://wiki.centos.org/HowTos/Https一、安装软件yum install mod_ssl openssl二、创建证书:# Generate private key openssl genrsa -out ca.key 2048 # Generate CS...
分类:
其他好文 时间:
2015-07-31 14:22:59
阅读次数:
268
Question: You are given a function rand7() – that generates random numbers from 1-7. Write a function rand10() – that uses rand7() to generate random ...
分类:
其他好文 时间:
2015-07-31 14:22:37
阅读次数:
129
题目如下:
Given numRows, generate the first numRows of Pascal's triangle.
For example, given numRows = 5,
Return
[
[1],
[1,1],
[1,2,1],
[1,3,3,1],
[1,4,6,4,1]
]
实现代码如下:
public c...
分类:
其他好文 时间:
2015-07-31 13:05:56
阅读次数:
94
1.Build -> Generate Signed APK...,打开如下窗口 2.假设这里没有打过apk包,点击Create new,窗口如下 这里只要输入几个必要项 Key store path(生产key文件的保存路径 ) Key store password(key 存储密码) ...
分类:
移动开发 时间:
2015-07-31 10:57:04
阅读次数:
168
【059-Spiral Matrix II(螺旋矩阵II)】【LeetCode-面试算法经典-Java实现】【所有题目目录索引】原题 Given an integer n, generate a square matrix filled with elements from 1 to n2 in spiral order.
For example,
Given n = 3,
Yo...
分类:
编程语言 时间:
2015-07-31 07:50:51
阅读次数:
179
今天在笔记本上安装了KaliLinux。配置为4GB+320GB
分区如下:
挂载点
格式
大小
/boot
ext4
100MB
/
ext4
20GB
/home
ext4
余下最大空间
/tmp
ext4
4GB
交换分区
swap
6GB
装好之后发现居然没有sshd-generate,但是servicesshstart之后,secureCRT可..
分类:
系统相关 时间:
2015-07-30 23:43:39
阅读次数:
264
Givenn, generate all structurally uniqueBST's(binary search trees) that store values 1...n.For example,Givenn= 3, your program should return all 5 uni...
分类:
其他好文 时间:
2015-07-30 01:58:55
阅读次数:
171
Unique Binary Search Trees II
原题:
Given n, generate all structurally unique BST's (binary search trees) that store values 1...n.
For example,
Given n = 3, your program should...
分类:
其他好文 时间:
2015-07-29 21:23:20
阅读次数:
101
022 Generate Parentheses纯递归解法class Solution: def __init__(self): self.ans = [] def generateParenthesis(self, n): self.help(n, ...
分类:
其他好文 时间:
2015-07-29 15:42:16
阅读次数:
95
Given n, generate all structurally unique BST's (binary search trees) that store values 1...n.
For example,
Given n = 3, your program should return all 5 unique BST's shown below.
1 3 ...
分类:
其他好文 时间:
2015-07-28 13:12:05
阅读次数:
92