摘要: Centos基于Redhat, 通过yum可以安装所需要的软件包。 1. yum -y install httpd , 这个会将httpd安装在 /etc/目录下。 2. 安装成功后,执行以下命令来启动httpd服务 service httpd start 3. 在浏览器中访问, 下面这个IP是我的 阅读全文
posted @ 2017-05-21 21:44 一片叶子啊 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 常见一级目录的作用: / 根目录 /bin 存放必要的命令 /sbin 存放系统管理程序 /boot 存放内核以及启动所需的文件等 /dev 存放设备文件 /etc 存放系统的配置文件 /home 用户文件的主目录,用户数据存放在其主目录中 /lib 存放必要的运行库 /mnt 存放临时的映射文件系 阅读全文
posted @ 2017-05-21 00:30 一片叶子啊 阅读(171) 评论(0) 推荐(1) 编辑
摘要: 官网地址:https://curl.haxx.se/ CURL是服务器之间传递数据的工具,支持大多数协议,如我们熟知的FTP,FTPS,HTTP,HTTPS, IMAP,SMTP, TELNET等等。他可以用于获取网站数据, 也可以上传数据。 简单用法: 1. 获取百度的网页内容,这个会返回html 阅读全文
posted @ 2017-05-20 21:36 一片叶子啊 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 这里下载Spring。 http://repo.spring.io/release/org/springframework/spring/ 1.复制: http://www.springframework.org/schema/beans/spring-beans.xsd 2. 打开Window - 阅读全文
posted @ 2017-04-21 23:50 一片叶子啊 阅读(351) 评论(0) 推荐(0) 编辑
摘要: Given two strings s and t which consist of only lowercase letters. String t is generated by random shuffling string s and then add one more letter at 阅读全文
posted @ 2017-04-02 18:47 一片叶子啊 阅读(108) 评论(0) 推荐(0) 编辑
摘要: Given a binary tree, find its maximum depth. The maximum depth is the number of nodes along the longest path from the root node down to the farthest l 阅读全文
posted @ 2017-04-02 18:22 一片叶子啊 阅读(91) 评论(0) 推荐(0) 编辑
摘要: Given a word, you need to judge whether the usage of capitals in it is right or not. We define the usage of capitals in a word to be right when one of 阅读全文
posted @ 2017-04-02 17:43 一片叶子啊 阅读(123) 评论(0) 推荐(0) 编辑
摘要: Given an array of integers where 1 ≤ a[i] ≤ n (n = size of array), some elements appear twice and others appear once. Find all the elements of [1, n] 阅读全文
posted @ 2017-04-02 15:59 一片叶子啊 阅读(136) 评论(0) 推荐(0) 编辑
摘要: Given an array of integers, every element appears twice except for one. Find that single one. Note:Your algorithm should have a linear runtime complex 阅读全文
posted @ 2017-04-01 18:44 一片叶子啊 阅读(96) 评论(0) 推荐(0) 编辑
摘要: Given a binary array, find the maximum number of consecutive 1s in this array. Example 1: Note: The input array will only contain 0 and 1. The length 阅读全文
posted @ 2017-04-01 18:26 一片叶子啊 阅读(128) 评论(0) 推荐(0) 编辑