摘要: 1.安装Apache 输入这一行安装Apachesudo yum install httpd然后启动 sudo service httpd start 如果想检验是否安装成功,就在浏览器中输入你服务器的IP地址进行访问 会出现Apache的一个测试界面,就代表安装成功了 2.安装Mysql 输入以下 阅读全文
posted @ 2018-03-31 17:28 vhyz 阅读(1645) 评论(0) 推荐(0) 编辑
摘要: 1.正则表达式匹配 '.' Matches any single character. ' ' Matches zero or more of the preceding element. The matching should cover the entire input string (not 阅读全文
posted @ 2018-03-31 14:49 vhyz 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 1.简单括号的匹配 Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. The brackets must clo 阅读全文
posted @ 2018-03-31 02:06 vhyz 阅读(754) 评论(0) 推荐(0) 编辑