上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 32 下一页

2015年12月26日

美拍视频下载

摘要: 任意打开一个人的美拍 以@喵大仙带你停药带你菲为例打开审查元素之后,把页面向下滑,因为美拍的是Ajax异步加载的,所以 加载的越多得到的信息越多,这样会得到几个json类型的数据 和几个xhr的数据 json数据打开后 是一个美拍视频 而xhr表示当前加载的是多少页 然后得到这几个数据 对数据进行分... 阅读全文

posted @ 2015-12-26 20:09 `Elaine 阅读(258) 评论(0) 推荐(0) 编辑

动态加载ajax 腾讯视频评论

摘要: import urllibimport urllib2import osimport requestsimport reimport jsonsns_url = 'http://sns.video.qq.com/fcgi-bin/video_comment_id?otype=json&op=3&vi... 阅读全文

posted @ 2015-12-26 15:56 `Elaine 阅读(241) 评论(0) 推荐(0) 编辑

2015年11月28日

摘要: //图//储存结构:邻接矩阵#include #include #include #include #include "queue.cpp"using namespace std;#define INF 1000000#define MAX_NAME 12#define MAX_INFO 26#de... 阅读全文

posted @ 2015-11-28 12:43 `Elaine 阅读(293) 评论(0) 推荐(0) 编辑

已知二叉树的先序,中序遍历,求后续遍历

摘要: //已知二叉树的先序,中序遍历,求后续遍历struct TreeNode{ char elem; struct TreeNode* left; struct TreeNode* right;};TreeNode* BinaryTree(char* inorder,char* pre... 阅读全文

posted @ 2015-11-28 12:43 `Elaine 阅读(303) 评论(0) 推荐(0) 编辑

二叉树

摘要: //二叉树//储存结构:顺序表#include #include #include #include #include using namespace std;#define MAX_TREE_SIZE 100 //二叉树的最大节点数#define Clear Init //顺序存储中两函数完全一样... 阅读全文

posted @ 2015-11-28 12:41 `Elaine 阅读(197) 评论(0) 推荐(0) 编辑

链式队列 + 顺序队列 + 顺序循环队列

摘要: #include #include #define OK 1#define FALSE 0#define ERROR -1typedef int Status;typedef int QElemType;typedef struct QNode{ QElemType data; QNod... 阅读全文

posted @ 2015-11-28 12:40 `Elaine 阅读(296) 评论(0) 推荐(0) 编辑

顺序串

摘要: //顺序串#include #include #include #include using namespace std;#define OK 1#define FALSE 0#define ERROR -1#define MAXSTRLEN 40typedef int Status;typedef... 阅读全文

posted @ 2015-11-28 12:40 `Elaine 阅读(178) 评论(0) 推荐(0) 编辑

顺序栈(进制转换 + 括号匹配 + 判断栈表 + 最长括号匹配长度)

摘要: #include #include #include using namespace std;#define TRUE 1#define FALSE 0#define OK 1#define ERROR 0#define INFEASIBLE -1#define OVERFLOW -2#defi... 阅读全文

posted @ 2015-11-28 12:37 `Elaine 阅读(337) 评论(0) 推荐(0) 编辑

顺序表

摘要: #include #include using namespace std;#define TRUE 1#define FALSE 0#define OK 1#define ERROR 0#define INFEASIBLE -1#define OVERFLOW -2#define LIST_I... 阅读全文

posted @ 2015-11-28 12:36 `Elaine 阅读(211) 评论(0) 推荐(0) 编辑

单链表

摘要: #include #include using namespace std;#define TRUE 1#define FALSE 0#define OK 1#define ERROR 0#define INFEASIBLE -1#define OVERFLOW -2typedef int St... 阅读全文

posted @ 2015-11-28 12:36 `Elaine 阅读(161) 评论(0) 推荐(0) 编辑

上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 32 下一页

导航