摘要:
源码https://github.com/doublekai/user web文件夹 阅读全文
摘要:
下面是主页面 css 运行截图 背景直接拖了一张图片 阅读全文
摘要:
上面是主页代码下面是js 运行截图 阅读全文
摘要:
下面是截图 样式和html已省略 阅读全文
摘要:
#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... 阅读全文
摘要:
#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 ... 阅读全文
摘要:
-*- 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... 阅读全文
摘要:
#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; ... 阅读全文
摘要:
#include "stdio.h" #define maxsize 10 typedef struct { int i,j; //非零元素的行、列 int v; //非零元素的值 }Triple; typedef struct { Triple data[maxsize]; int m,n; //矩阵的行、列 }TSMarix; InitTr... 阅读全文