摘要:
安装phantomjs下载地址:http://phantomjs.org/download.html下载后解压缩,启动phantomjsE:\phantomjs-2.1.1-windows\bin执行phantomjs.exe 阅读全文
摘要:
1、新建文件config.json,内容如下,文件放在pyspider文件夹下,路径为C:\Windows\System32\cmd.exe 2、安装redis,在redis文件夹下启动终端,运行命令启动redis服务端E:\redis>redis-server.exe redis.windows. 阅读全文
摘要:
#列表表示树 def BinaryTree(r): return [r, [], []] def insertLeft(root,newBranch): t = root.pop(1) if len(t) > 1: root.insert(1,[newBranch,t,[]]) else: root.insert(1,[new... 阅读全文