摘要: 源码https://github.com/doublekai/user web文件夹 阅读全文
posted @ 2018-10-12 15:11 Doublekai 阅读(933) 评论(0) 推荐(0) 编辑
摘要: 下面是主页面 css 运行截图 背景直接拖了一张图片 阅读全文
posted @ 2017-12-19 21:07 Doublekai 阅读(4150) 评论(0) 推荐(0) 编辑
摘要: 上面是主页代码下面是js 运行截图 阅读全文
posted @ 2017-12-13 19:08 Doublekai 阅读(2427) 评论(1) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-12-05 19:14 Doublekai 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 下面是截图 样式和html已省略 阅读全文
posted @ 2017-11-24 10:44 Doublekai 阅读(4492) 评论(0) 推荐(1) 编辑
摘要: #coding:utf-8 import urllib2 import os import re def dow(url): return urllib2.urlopen(url).read() str=dow('http://theater.mtime.com/China_Beijing/') lst=re.findall('\d+家影院上映\d+场',str) url = 'http... 阅读全文
posted @ 2017-06-02 14:18 Doublekai 阅读(569) 评论(2) 推荐(1) 编辑
摘要: #coding:utf-8 def leap_year(year):#判断平瑞年 if year%4==0 and year%100!=0 or year%400==0: return True else: return False def getMonthDays(year,month):#得到每个年份每月的天数 days = 31 ... 阅读全文
posted @ 2017-05-20 11:01 Doublekai 阅读(9780) 评论(1) 推荐(0) 编辑
摘要: -*- coding: utf-8 -*- import urllib2 import os def mean_audience_score(id): arv = 0.0 sc_url = "http://movie.mtime.com/" + id + "/" sc_req = urllib2.Request(sc_url, headers={'User-Agen... 阅读全文
posted @ 2017-05-15 18:39 Doublekai 阅读(3395) 评论(0) 推荐(0) 编辑
摘要: #include "stdio.h" #include "malloc.h" #include "stdlib.h" typedef struct BTNode { int data; struct BTNode *Lchild,*Rchild; }BTree; //初始化 BTree * Ini_BTNode() { BTree *bt ; int a; ... 阅读全文
posted @ 2017-04-24 10:09 Doublekai 阅读(4417) 评论(0) 推荐(0) 编辑
摘要: #include "stdio.h" #define maxsize 10 typedef struct { int i,j; //非零元素的行、列 int v; //非零元素的值 }Triple; typedef struct { Triple data[maxsize]; int m,n; //矩阵的行、列 }TSMarix; InitTr... 阅读全文
posted @ 2017-04-17 10:27 Doublekai 阅读(4781) 评论(0) 推荐(0) 编辑