E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
Subway
【数学建模集训系列】公交查询系统的matlab实现-加入地铁线T2
clear,clc startP=input('请输入起点:'); endP=input('请输入终点:'); %D_index=searchS(startP,
subway
_index); load T2
baiseda
·
2011-08-19 00:00
matlab
【数学建模集训系列】公交查询系统的matlab实现-加入地铁线T1
clear,clc startP=input('请输入起点:'); endP=input('请输入终点:'); %D_index=searchS(startP,
subway
_index); load T1
baiseda
·
2011-08-19 00:00
matlab
my ReadMap
subway
/ metro / map / ditie / gaotie / traffic / jiaotong
worldmaphttp://dl.iteye.com/upload/attachment/0084/4426/1809f595-227d-35a6-a353-2e0a52031c60.gif ditie/
subway
siemens800
·
2011-08-12 11:00
metro
my ReadMap
subway
/ metro / map / ditie / gaotie / traffic / jiaotong
worldmaphttp://dl.iteye.com/upload/attachment/0084/4426/1809f595-227d-35a6-a353-2e0a52031c60.gif ditie/
subway
siemens800
·
2011-08-12 11:00
metro
地铁系统 POJ1635
subway
tree systems 判断树同构 DFS搜索子串
题目给出两个串,判断这两个串是否表示同一颗树。如果str1和str2表示同一颗树,那肯定“殊路同归”,即最终肯定能变换成同一种形式。所以,算法的基本思路:把str1和str2都转换成标准形式,然后判断是否相同。 最终的“标准形式”是什么?先分析一下,这些串有什么特点。“万法归宗”,从根节点出发,最终还要回到根节点。对树的每条边,有去必有回,去为0,回为1。显然,遍历整个树会得
sj13051180
·
2011-07-24 21:00
数据结构
算法
String
tree
构词法(八)表示方向、位置的常用词缀和形容词化常用词缀与程度的常用词缀
缀词缀位置意义例词over- above,在…之上向上,在上overbridge天桥;overhead头顶的up- uphold高举;upright垂直的 sub- 下,在下,其次次,亚,低于,不足
subway
baiyan425
·
2011-07-19 09:57
职场
休闲
词根
词缀
构词法
[You're Beautiful -James Blunt]
She smiled at me on the
subway
. She was with another man. But I w
dotjar
·
2010-12-23 09:00
UP
这趟公交的站点
阅读更多上面是一张Toronto的
Subway
,某人曾说:lawrence和bayview交的地方是Toronto的富人区,都是古堡式的豪宅...很令人向往....突然想起曾在空间写过的一个关于"公交站点
zjx2388
·
2010-11-02 13:00
Blog
这趟公交的站点
上面是一张Toronto的
Subway
,某人曾说:lawrence和bayview交的地方是Toronto的富人区,都是古堡式的豪宅...很令人向往....突然想起曾在空间写过的一个关于"公交站点"的
zjx2388
·
2010-11-02 13:00
Blog
ZJU 1990
Subway
tree systems - 树的最小表示
题目大意:初始时站在树的根节点,若朝着远离根的方向走,记录“0”,接近根的方向走记录“1”。并且树的每一条边只能来回走一次(即向下和返回)。一个合法的01序列可以描述出一棵树的形态。现在给出两个合法的01序列,判断两棵树是否同构。分析:由于根节点确定,若两棵树同构,无非就是把子树的位置交换了一下。很自然的想法就是:将树的子树按照某种规则进行排序,若排序之后两个字符串相等,则同构;否则不同构。现在
fangyi86
·
2010-10-14 20:00
poj 1635
Subway
tree systems
/*Poj1635无回路的图,选定根节点,即可确定一棵树。一棵树统计每个节点的子节点个数,每个节点的深度,最后给每个节点排序,即可当成树的最小表示。最小表示相同的树同构。*/#include usingnamespacestd; constintmaxn=3005; structnode { intdepth,son; }tree[maxn],tree2[maxn]; intC
birdforever
·
2010-08-30 00:00
ZOJ 1891
Subway
(dijkstra)
从家走到学校,怎样时间最短? 有两种行进方式,走路,坐地铁,他们的速度不一样(注意在运算的时候要变换单位,题目求的时间是分钟,而且题目给的坐标是以米为单位,不是千米)。给出几条地铁线路和他们的节点,相邻节点之间肯定做地铁,然后把走路的路线弄出来,非地铁路线均是走路路线。。。。然后dijkstra。。。就OK了、 #include#include#includestructpoint{doublex
dangwenliang
·
2010-07-30 20:00
POI 2006 Met-
Subway
SubwayMemorylimit:128MBAcertaincityhasbeencopingwithsubwayconstructionforalongtime.Thefinanceshavebeenmismanagedandthecostshavebeenunderestimatedtosuchextentthatnofundswereforeseenforthepurchaseoftra
gy_jk
·
2010-06-09 20:00
struct
tree
Graph
buffer
insert
construction
POJ 1635
Subway
tree systems
/*主要是根据输入串建树,然后对树DFS,重新获得一个排序后的01串。对两个输入串分别运用上述方法分别得到两个排序后的01串,如果两个串相等则same,否则different关键在于DFS时对子树返回的01串进行存储和排序,然后重组比如对于0100101100100111和0011000111010101,重组后分别变成:0001101100101101和0001110011010101,不相等
bobten2008
·
2009-11-07 10:00
String
tree
null
iterator
存储
pku 1635
Subway
tree systems(树的同构,最小表示)
树的同构的判断,先用深搜得到以某个节点为起点的01表示,0表示往远离中心的节点走,1表示往靠近中心的节点走。用了两种方法做。1.把树去除根节点后,可以分成数棵子树。每个子树对应一个01串,然后用字符的比较函数排列这些01串。递归调用,得到树的一种最小表示。下面的代码因为反复使用string,速度很慢很慢。#include#include#include#include#include#includ
logic_nut
·
2009-09-21 09:00
String
struct
tree
stdstring
Non-Yekaterinburg
subway
ural1272.Non-Yekaterinburgsubway#includeusing namespace std;struct arr{ int x,y,c;}a[25000];int N,k,m;int p[10010];int Find(int x){ if(x!=p[x]) p[x]=Find(p[x]); return p[x];}int main(){ sc
xfstart07
·
2009-06-03 18:00
Waterloo local 2001.09.22
Waterloolocal2001.09.22 题目分类 AverageSpeed 简单题
Subway
图论,最短路Babelfish MapBoundingbox 几何Amultiplicationgame
hello-world
·
2009-02-12 23:00
ZJU 1990
Subway
tree systems - 树的最小表示
题目大意:初始时站在树的根节点,若朝着远离根的方向走,记录“0”,接近根的方向走记录“1”。并且树的每一条边只能来回走一次(即向下和返回)。一个合法的01序列可以描述出一棵树的形态。现在给出两个合法的01序列,判断两棵树是否同构。分析:由于根节点确定,若两棵树同构,无非就是把子树的位置交换了一下。很自然的想法就是:将树的子树按照某种规则进行排序,若排序之后两个字符串相等,则同构;否则不同构。现在来
tiaotiaoyly
·
2008-10-17 17:00
算法
tree
ini
Going Shopping: Getting lost 迷路
You can take the
subway
to 34t
tudusi
·
2008-09-11 22:00
ping
《Seven Days》–Craig David
On my way to see my friends who lived a couple blocks away from me (owh) As I walked through the
subway
famoushz
·
2008-08-22 12:00
vi
Traffic jam in
subway
station
Areyouconfusedwiththetitle?asweknow,thesubwaytrainsrunonadedicateline,theyneverencounteratrafficjamunlessthereisanaccidentorthereisanerrorwiththesignalsystem. Actuallyeverythinggoeswellthismorning,but
simon
·
2008-04-09 11:13
北京
休闲
地铁
客流
高峰
First English Unit 5 Listen (Part 3)
Take the
subway
to City Center. Go out the Maple Street exit. In front of the exit is a park.
lwg2001s
·
2007-10-22 00:00
Go
Merry Christmas!
. ^_^ Last night, Christmas Eve, two of my good friends and I went toShanghaiPeople'sSquare by
subway
izuoyan
·
2006-12-25 16:00
AS
sfo聚会(上)
跳下车之后我就进
subway
,结果在香港名店街转了半天,赫然发现一块牌子:本段地铁通道正在维修,请走规划院旁边的入口。靠,也不早说!上来,过马路,哇塞,同时千人过马路真是个壮观的场景。
hax
·
2004-09-05 11:00
工作
活动
电话
上一页
1
2
3
4
5
6
7
8
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他