上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 20 下一页

2015年2月2日

html5之多文件的上传

摘要: html5多文件的上传 multiple文件选择FileList选择文件: 阅读全文

posted @ 2015-02-02 20:07 aicpcode 阅读(183) 评论(0) 推荐(0) 编辑

LocalStorage的使用

摘要: Local Storage test 在本地保存当前日期恢复保存的日期删除日期信息 阅读全文

posted @ 2015-02-02 18:21 aicpcode 阅读(174) 评论(0) 推荐(0) 编辑

2015年2月1日

坐标轴的平移和旋转

摘要: canvas 旋转 浏览器不支持canvas绘图操作==================================================function $$(id){ return document.getElementById(id);}func... 阅读全文

posted @ 2015-02-01 23:30 aicpcode 阅读(853) 评论(0) 推荐(0) 编辑

HTML5进度条progress的使用

摘要: HTML5进度条progress的使用 progress元素的使用开始下载 阅读全文

posted @ 2015-02-01 22:34 aicpcode 阅读(340) 评论(0) 推荐(0) 编辑

prime算法的使用

摘要: prime算法的使用package PrimeApplication;import java.util.Scanner;/** * 农民要建立互联网络,目的使村庄里所有的农民连上网,并且总费用最小。 * 多组数据,每组数据给出一个n, * 然后给出n * n大小的无向图的邻接矩阵表示,值表示边... 阅读全文

posted @ 2015-02-01 20:44 aicpcode 阅读(382) 评论(0) 推荐(0) 编辑

网站前台框架html

摘要: 网站前台框架html 阅读全文

posted @ 2015-02-01 18:39 aicpcode 阅读(253) 评论(0) 推荐(0) 编辑

数据用pdf和world显示和保存

摘要: 数据用pdf和world显示和保存package dao;import java.sql.Connection;import java.sql.DriverManager;import java.sql.ResultSet;import java.sql.Statement;public class... 阅读全文

posted @ 2015-02-01 00:08 aicpcode 阅读(201) 评论(0) 推荐(0) 编辑

2015年1月31日

C++构造函数

摘要: #includeclass rectangel{public: rectangel(int l,int w){ length = l; width = w; } int area(); private : int length; int width;};int rectangel::a... 阅读全文

posted @ 2015-01-31 21:58 aicpcode 阅读(91) 评论(0) 推荐(0) 编辑

2015年1月30日

拓扑排序的算法

摘要: 拓扑排序的算法package ToPu;public class Graph { private final int MAX_VERTS = 20; private Vertex vertexList[]; private int adjMat[][]; private int nVerts; pr... 阅读全文

posted @ 2015-01-30 23:53 aicpcode 阅读(236) 评论(0) 推荐(0) 编辑

实现一个基于双向链表的双端队列

摘要: package day1_30_5_2;public class DoubleLinkedList { private Link first; private Link last; public DoubleLinkedList(){ first = null; last = null; } ... 阅读全文

posted @ 2015-01-30 16:19 aicpcode 阅读(390) 评论(0) 推荐(0) 编辑

上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 20 下一页

导航