摘要: 1 void exchange( struct node* node){ 2 struct node* tnode = node; 3 struct node* tmp = NULL; 4 5 if(node == NULL) 6 return; 7 8 while(1){ 9 tmp = tnod 阅读全文
posted @ 2016-02-08 16:33 invisible 阅读(2366) 评论(0) 推荐(0) 编辑
摘要: Beautiful Soup 是用Python写的一个HTML/XML的解析器,它可以很好的处理不规范标记并生成剖析树(parse tree)。 它提供简单又常用的导航(navigating),搜索以及修改剖析树的操作。它可以大大节省你的编程时间。 # -*- coding:utf-8 -*- #导 阅读全文
posted @ 2016-02-07 23:08 invisible 阅读(788) 评论(0) 推荐(0) 编辑