Linux提供了丰富的帮助手册,当你需要查看某个命令的参数时不必到处上网查找,只要man一下即可。 Linux的man手册共有以下几个章节: 1 Executable programs or shell commands2 System calls (functions provided by th ...
分类:
系统相关 时间:
2018-12-03 15:22:32
阅读次数:
264
On an infinite number line (x-axis), we drop given squares in the order they are given. The i-th square dropped (positions[i] = (left, side_length)) i ...
分类:
其他好文 时间:
2018-12-01 20:13:02
阅读次数:
219
consonant_摩擦音_咬舌音_[θ]和[ð]、[h] 咬舌音:咬住舌尖发音。 [?θ]:牙齿咬住舌尖,送气,气流摩擦发出声音,声带不振动; faith.thank.healthy.both.thick.mouth. [ð]:牙齿咬住舌尖,送气,气流摩擦发出声音,声带振动; breathe.th ...
分类:
其他好文 时间:
2018-12-01 11:02:05
阅读次数:
142
Linux 的基础命令的操作 显示日期和时间:date 显示日历:cal 简单好用的计算机:bc 1.显示日期: date +%Y/%m/%d 2018/09/01 date +%H:%M 14:26 2.显示日历 cal December 2018 Su Mo Tu We Th Fr Sa 1 2 ...
分类:
系统相关 时间:
2018-12-01 00:03:07
阅读次数:
168
21、 Merge Two Sorted Lists Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of th ...
【题目】 There are a number of spherical balloons spread in two-dimensional space. For each balloon, provided input is the start and end coordinates of th ...
分类:
其他好文 时间:
2018-11-28 15:39:02
阅读次数:
183
class Solution { public: int kthGrammar(int N, int K) { return helper(N, K, false); } int helper(int n, int k, bool reverse) { if (n == 1) return reve... ...
分类:
其他好文 时间:
2018-11-27 10:12:08
阅读次数:
175
表格是html中经常使用到的,简单的使用可能很多人都没问题,但是更深入的了解的人恐怕不多,下面我们先来看一下如何使用。 <table>是<tr>的上层标签<tr>必须在一个<table></table>里面,它不能单独使用,相当于<table>的属性标签. <table>标示一个表格,<tr>标示这 ...
分类:
Web程序 时间:
2018-11-22 20:39:04
阅读次数:
149
当我们开启虚拟机时出现错误: VMware Workstation cannot connect to the virtual machine. Make sure you have rights to run the program, access all directories the prog ...
分类:
数据库 时间:
2018-11-22 16:09:49
阅读次数:
262
有一个业务是查询最新审核的5条数据 ```sql SELECT `id`, `title` FROM `th_content` WHERE `audit_time` < 1541984478 AND `status` = ‘ONLINE‘ ORDER BY `audit_time` D.
分类:
数据库 时间:
2018-11-21 21:08:30
阅读次数:
193