本月博客排行
-
第1名
Xeden -
第2名
fantaxy025025 -
第3名
bosschen - paulwong
- johnsmith9th
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - gengyun12
- wy_19921005
- vipbooks
- e_e
- benladeng5225
- wallimn
- ranbuijj
- javashop
- jickcai
- fantaxy025025
- zw7534313
- qepwqnp
- robotmen
- 解宜然
- ssydxa219
- sam123456gz
- zysnba
- sichunli_030
- tanling8334
- arpenker
- gaojingsong
- xpenxpen
- kaizi1992
- wiseboyloves
- jh108020
- xyuma
- ganxueyun
- wangchen.ily
- xiangjie88
- Jameslyy
- luxurioust
- mengjichen
- lemonhandsome
- jbosscn
- nychen2000
- zxq_2017
- lzyfn123
- wjianwei666
- forestqqqq
- ajinn
- siemens800
- hanbaohong
- 狂盗一枝梅
- java-007
- zhanjia
- 喧嚣求静
- Xeden
最新文章列表
Given a sorted dictionary of an alien language, find order of characters
Given a sorted dictionary (array of words) of an alien language, find order of characters in the language.
Examples:
Input: words[] = {"baa", "abcd", "abca", " ...
Dijkstra’s Algorithm
1. Single-Source Shortest Paths Problem:
Input: Directed graph G=(V, E). (m=|E|, n=|V| )
-- each edge has non negative length le
-- source vertex s
Output: f ...
Random Contraction Algorithm
1. Two ingredients of Graph:
a) vertices A.K.A. nodes (V)
b) edges = pairs of vertices (E)
can be undirected or directed A.K.A arcs
2. Definition of Cuts of Graphs:
A ...
Web版画图,目前支持SVG,后续支持CANVAS,进来说一两句
由于最近项目比较忙,只做了一个初版,做了一个基本图形和一个平面图的效果,做得不够细致,希望大家多多包涵。保存按钮没有实现,缩略图没有放开(还有一些问题存在),当前版本是用SVG来画图,以后可以替换成CANVAS来绘制,望大家到demo地址上看看,有遇到bug欢迎提出来,在此感谢:) 目前支持的游览器为:IE9及更高版本(低版本不支持SVG绘图,需要装SVG插件) ...
在Titanium中如何画图表
目前版本的Titanium的一个弱点就是不能画图!这回我们说说通过flot在Titanium中画图表。
flot的下载
flot的主页:http://code.google.com/p/flot/
下载flot-0.7.zip后,把以下文件拷贝到自己的工程中:
jquery.flot.js
jquery.js
flot的测试
作成以下flot测试用的plot_window.js:
var ...
几个最短路算法。
http://acm.hdu.edu.cn/showproblem.php?pid=2544
大水题一枚,仅以练手。
Dijkstra:
#include<iostream>
using namespace std;
#define SIZE 200
#define INF 0xfffffff
#define MIN(a,b) a>b?b:a
int G[SIZE][ ...