会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
云胡
新随笔
管理
上一页
1
2
3
4
5
6
7
···
12
下一页
2017年8月27日
POJ3984《迷宫问题》
摘要: 题目描述定义一个二维数组: 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 云胡同学
阅读(149)
评论(0)
推荐(0)
2017年8月25日
python爬取知乎回答
摘要: 1. 安装库htmlparser用来解析html。Beautiful Soup 是一个可以从 HTML 或 XML 文件中提取数据的 Python 库。 pip install beautifulsoup4Selenium 是浏览器自动化测试框架,使用它来模拟用户操...
阅读全文
posted @ 2017-08-25 15:38 云胡同学
阅读(425)
评论(0)
推荐(0)
2017年8月14日
登录验证
摘要: connect_error) { echo "error"; echo ""; } $sql = "SET NAMES UTF8"; if($conn->query($sql) === true) { ech...
阅读全文
posted @ 2017-08-14 22:41 云胡同学
阅读(211)
评论(0)
推荐(0)
点击按钮后跳转到php网页
摘要: login 号码: 密码: 登录
阅读全文
posted @ 2017-08-14 22:37 云胡同学
阅读(741)
评论(0)
推荐(0)
简单网页数据传递
摘要: 提交Username: 将数据传到另一个网页中。Welcome
阅读全文
posted @ 2017-08-14 20:38 云胡同学
阅读(217)
评论(0)
推荐(0)
2017年8月12日
逆波兰计算器
摘要: #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 云胡同学
阅读(259)
评论(0)
推荐(0)
2017年8月1日
18. 4Sum
摘要: 题目描述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 云胡同学
阅读(94)
评论(0)
推荐(0)
2017年7月31日
15. 3Sum
摘要: 题目描述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 云胡同学
阅读(75)
评论(0)
推荐(0)
16. 3Sum Closest
摘要: 题目描述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 云胡同学
阅读(77)
评论(0)
推荐(0)
2017年7月28日
88. Merge Sorted Array
摘要: 题目描述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 云胡同学
阅读(77)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
···
12
下一页