上一页 1 2 3 4 5 6 7 ··· 12 下一页
摘要: 题目描述定义一个二维数组: int maze[5][5] = {0, 1, 0, 0, 0,0, 1, 0, 1, 0,0, 0, 0, 0, 0,0, 1, 1, 1, 0,0, 0, 0, 1, 0,};它表示一个迷宫,其中的1表示墙壁,0表示可以走的路,只能横着... 阅读全文
posted @ 2017-08-27 20:19 云胡同学 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 1. 安装库htmlparser用来解析html。Beautiful Soup 是一个可以从 HTML 或 XML 文件中提取数据的 Python 库。 pip install beautifulsoup4Selenium 是浏览器自动化测试框架,使用它来模拟用户操... 阅读全文
posted @ 2017-08-25 15:38 云胡同学 阅读(376) 评论(0) 推荐(0) 编辑
摘要: connect_error) { echo "error"; echo ""; } $sql = "SET NAMES UTF8"; if($conn->query($sql) === true) { ech... 阅读全文
posted @ 2017-08-14 22:41 云胡同学 阅读(185) 评论(0) 推荐(0) 编辑
摘要: login 号码: 密码: 登录 阅读全文
posted @ 2017-08-14 22:37 云胡同学 阅读(728) 评论(0) 推荐(0) 编辑
摘要: 提交Username: 将数据传到另一个网页中。Welcome 阅读全文
posted @ 2017-08-14 20:38 云胡同学 阅读(211) 评论(0) 推荐(0) 编辑
摘要: #include#include#include #includeusing namespace std;int level(char ch);int main(){ stack s1, s2, s3, s4; // char str[10]; i... 阅读全文
posted @ 2017-08-12 22:19 云胡同学 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 题目描述Given an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d = target? Find all unique quadruple... 阅读全文
posted @ 2017-08-01 12:36 云胡同学 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 题目描述Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array whi... 阅读全文
posted @ 2017-07-31 22:53 云胡同学 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 题目描述Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of... 阅读全文
posted @ 2017-07-31 22:42 云胡同学 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 题目描述Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array.Note: You may assume that nums1 has en... 阅读全文
posted @ 2017-07-28 07:29 云胡同学 阅读(67) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 12 下一页