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
Leaves
UVa 699 The Falling
Leaves
(DFS遍历二叉树)
699-TheFallingLeavesTimelimit:3.000seconds http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=640Eachyear,fallintheNorthCentralregionisaccompaniedbythebrill
synapse7
·
2013-10-26 22:00
C++
二叉树
ACM
uva
Counting
Leaves
(30)
利用广度优先搜索,找出每层的叶子节点的个数。#include #include #include #include usingnamespacestd; vector>tree; vectorans; voidBFS(ints) { queue>q; q.push(make_pair(s,0)); intcur_step=0; intcnt=0; while(!q.empty()) { in
gzxcyy
·
2013-10-11 20:00
C++
搜索
pat
bfs
POJ 1577 Falling
Leaves
DescriptionFigure1showsagraphicalrepresentationofabinarytreeofletters.Peoplefamiliarwithbinarytreescanskipoverthedefinitionsofabinarytreeofletters,leavesofabinarytree,andabinarysearchtreeofletters,and
lphy2352286B
·
2013-08-31 13:00
ExtJS做的一个信息管理界面
Js代码 /** * 默认页面 * * @author
leaves
.qq:1330771552 */ Ext.define('SupplyManagementDesktop.def
qq1162195421
·
2013-08-19 22:00
699 - The Falling
Leaves
题意:落叶成堆,一颗二叉树,每个节点包含一定的叶子数,上面的每个节点都会落下,如果他们的垂直位置相同,就会落成同一堆(叶子数叠加),当所有节点掉落完后,输出从左到右所有堆中的叶子个数.(1).对于每一个节点,它的左子树根节点在它的左边一个单位处,它的右子树根节点在它的右边一个单位处;(2).按树的前序遍历进行输入,如果是-1,表示节点为空.思路:使用一个vector来存放所有的堆,堆的起始位置从v
sailtseng
·
2013-08-11 11:00
uva
Leaves
the
699
Falling
699 - The Falling
Leaves
TheFallingLeaves Eachyear,fallintheNorthCentralregionisaccompaniedbythebrilliantcolorsoftheleavesonthetrees,followedquicklybythefallingleavesaccumulatingunderthetrees.Ifthesamethinghappenedtobinarytr
SIOFive
·
2013-08-07 22:00
算法
二叉树
uva
PAT 1004 Counting
Leaves
最近刚开始做PAT的练习题,太久没敲题目,手和脑袋都生锈了.本题的题意就是要我们在familytree族谱上找出同一辈(与根节点距离相等的节点)没有child的节点个数.博主在做这道题时用的是广搜+连接表;主要注意的地方在于:输入的节点编号不一定是连续的;父节点的编号不一定小于子节点的编号;参考代码如下,大牛勿喷:#include intmain() { intn,m,l[110]={0},i,k
cham3
·
2013-08-02 12:00
pat
bfs
连接表
UVA 699 The Falling
Leaves
UVA699TheFallingLeaves题意 输入一棵树,把垂直方向上同一位置的叶子节点值加以来,最后逐个输出思路 题目中是按前序输入树,所以就按前序来建立一棵树,之后建一个数组,从数组中间开始存,每次访问左节点就把数组往左存,访问右节点就往右,最后输出储存的数组即可代码#include #include #include intnum[1000]; intoutput[1000]; typ
u011217342
·
2013-07-09 08:00
ACM
uva
Counting
Leaves
(30)-PAT
1004.CountingLeaves(30)时间限制400ms内存限制32000kB代码长度限制16000B判题程序Standard作者CHEN,YueAfamilyhierarchyisusuallypresentedbyapedigreetree.Yourjobistocountthosefamilymemberswhohavenochild.InputEachinputfilecontai
zoushidexing
·
2013-07-08 16:00
uva 699 The Falling
Leaves
(建树)
TheFallingLeaves Eachyear,fallintheNorthregionisaccompaniedbythebrilliantcolorsoftheleavesonthetrees,followedquicklybythefallingleavesaccumulatingunderthetrees.Ifthesamethinghappenedtobinarytrees,ho
u011328934
·
2013-07-07 14:00
uva 699 The Falling
Leaves
dfs实现
额,刘汝佳小白里面的配套题目。 题目求二叉树同垂直线上结点值的和。 可以用二叉树做,挺水的其实。 尝试使用dfs实现了:开一个大点的数组,根节点为最中间那点,然后读取时就可以进行和的计算了。 代码: #include <cstdio> #include <cstring> const int maxn = 10000; int n = 500, tmp, nu
runfeel
·
2013-07-07 01:00
DFS
uva-699 The Falling
Leaves
Eachyear,fallintheNorthCentralregionisaccompaniedbythebrilliantcolorsoftheleavesonthetrees,followedquicklybythefallingleavesaccumulatingunderthetrees.Ifthesamethinghappenedtobinarytrees,howlargewouldt
ultimater
·
2013-07-06 20:00
Counting
Leaves
(30)
题目地址:http://pat.zju.edu.cn/contests/pat-a-practise/1004考查链表。记录下叶子节点信息,然后逐层嵌套count就可以了。代码如下://#include"StdAfx.h" #include #include usingnamespacestd; intcount[100]={0}; intmaxlevel=1; structchildLink
eli850934234
·
2013-05-05 13:00
编程
ACM
pat
浙大
POJ-1577-Falling
Leaves
二叉树的基本练习题,比较简单吧,只是对输入数据处理以及对树的建立注意下就可以了。代码:#include #include #include usingnamespacestd; structnode { intlchild; intrchild; charval; }t[1000]; charstr[1000]; intn; voidAdd(intindex,charval) { if(t[ind
z309241990
·
2013-03-24 13:00
tree
ZOJ 1700 Falling
Leaves
树形结构
做法:看清题意即可。#include #include constintLMT=30; inthead,cnt,tr,lev; structnode { intl,r,data; }nod[LMT]; charans[LMT],sec[LMT][LMT]; voidinit() { inti; for(i=0;inod[pos].data)dfs(nod[pos].r,pos,0,val); el
cqlf__
·
2013-03-13 23:00
Counting
Leaves
(30)
考察树结构的简单存储以及遍历搜索#include #include #include intn,m; std::vector>edge; std::vectorBFS(ints) { std::queue>q; q.push(std::make_pair(s,0)); intcur_step=0; std::vectorans; intcnt=0; while(!q.empty()) { int
sunbaigui
·
2013-03-11 09:00
pat
ZJU
pat 1004 counting
Leaves
之前一直WA,转换了个思路(用一个parent[]保存父结点,而不是老想用一个数组保存子结点),就1Y了。输入时进行处理,用一个parent[]保存父结点,标记出所有的非叶结点,再对每个叶结点计算它们的层数,相应的层数的叶结点数++即可。AC代码:#include usingnamespacestd; structnode { node*left,*right; intvalue; }
jjike
·
2013-02-26 22:00
关于RecursiveIteratorIterator几个参数测试结果
RecursiveIteratorIterator::
LEAVES
_ONLY默认,已在__construct中设定使用作用是去枝留叶,跳过空节点,只递归取实值举例就是1.递归文件夹取文件时跳过文件夹本身
ellisonDon
·
2013-02-26 09:00
Leaves
Leaves
实现了类似iBook的翻书效果的视图切换。转载:http://www.adobex.com/ios/source/details/00000997.htm
iosCode
·
2013-02-01 18:00
Leaves
Leaves
Leaves
实现了类似iBook的翻书效果的视图切换。转载:http://www.adobex.com/ios/source/details/00000997.htm
iosCode
·
2013-02-01 18:00
Leaves
数据结构 uva-699-The Falling
Leaves
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=104&page=show_problem&problem=640 题目意思:给一颗二叉树,让你按左到右的顺序,输出同一水平位置的所有节点的值的总和。 解题思路:用递归建树,在建树的过程中就把每一水平位置上的总和求出来。在这里我把树
cc_again
·
2013-02-01 12:00
pat 1004 Counting
Leaves
1.3两个测试点没过,若有知道哪里没过的,烦请告知 #include #include //system("Pause"); #defineMAX_LENGTH105 intchildNum[MAX_LENGTH]; intlevel[MAX_LENGTH]; intcount[MAX_LENGTH]; intmain() { intn,m,i,k,id; intchildId,maxLevel
jjike
·
2012-11-21 18:00
PAT1004 Counting
Leaves
统计树的每一层上叶子节点的个数 Sample Input 2 1 01 1 02 Sample Output 0 1 #include <iostream> #include <iomanip> #include <string>
风吹过PP好冷
·
2012-11-18 23:00
count
binder编译error
1、自己写个binderservice,编译老是报错make:Enteringdirectory`/home/
leaves
/android/android2/android'targetthumbC++
new_abc
·
2012-11-02 14:00
Binder使用示例
BInder方面的资料虽然感觉看的比较多,但是真正用的时候才发现有很多地方模棱两棵的,所以,打算用一个实例再来巩固一下binder的使用方法首先看下目录结构:
leaves
@
leaves
-desktop:
new_abc
·
2012-10-22 14:00
iOS 书翻页效果
本文由论坛会员德鲁伊分享
Leaves
是由TowBrow开发的一个简单的图书翻页控件,它巧妙地结合了镜像层、阴影层(用于半透明页)和渐变层(用于阴影)来实现图书的翻页效果。
yu0089
·
2012-09-28 14:00
ios
image
iPhone
float
layer
distance
北京 著名 外企招聘 数据库底层开发人员(c/c++)
这个职位在工作中会做两个系统下的数据库开发请不要害怕,经过跟公司沟通可以只做过一个系统下的开发,但一定要做过数据库底层开发如果感兴趣请联系我MSN:ych_
leaves
@hotmail.comResponsibilities
叶锋
·
2012-08-21 11:00
招聘
底层
数据库开发
uva 699 - The Falling
Leaves
TheFallingLeaves Eachyear,fallintheNorthCentralregionisaccompaniedbythebrilliantcolorsoftheleavesonthetrees,followedquicklybythefallingleavesaccumulatingunderthetrees.Ifthesamethinghappenedtobinarytr
Frankiller
·
2012-07-20 09:00
tree
Integer
input
each
output
colors
uva 699 The Falling
Leaves
点击打开链接http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=104&page=show_problem&problem=640 题目意思:给定一串数字,第一个是根节点的值,接下来如果遇到-1 则该点为空,不是-1则创建节点,求最后从左往右每一条竖线的和
isiqi
·
2012-07-05 01:00
uva
uva 699 The Falling
Leaves
点击打开链接题目意思:给定一串数字,第一个是根节点的值,接下来如果遇到-1则该点为空,不是-1则创建节点,求最后从左往右每一条竖线的和分别输出。解题思路:1建树2前序遍历求和3输出(这里刚误删了,晚了得睡觉了,有时间更新)注意事项:我们可以采用,把-1这个节点的val赋值成很小的数,然后不让它为空,后面计算时候算到这个点直接跳过代码:#include #include #include #incl
cgl1079743846
·
2012-07-05 01:00
UVa 699 - The Falling
Leaves
二叉树的落叶
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=104&page=show_problem&problem=640题目类型:数据结构,二叉树题目大意:每年的秋天,北方的树叶伴随着灿烂无比的颜色,叶子随风飘落到树下,地上很快就积累一大堆。如果同样的事情发生在二叉树,树上的结点都慢慢落
king_tt
·
2012-07-04 11:00
二叉树
iOS上一种图书翻页效果的实现(
Leaves
)详解
Leaves
是由TowBrow开发的一个简单的图书翻页控件,它巧妙地结合了镜像层、阴影层(用于半透明页)和渐变层(用于阴影)来实现图书的翻页效果。
zaitianaoxiang
·
2012-06-26 17:00
ios
image
iPhone
float
layer
distance
sql server 按字符截取字段
字段A=’F:\photo\Winter
Leaves
.jpg’ 要求:分段截取每段字符[字段A不能为TEXT类型,否则报错] 解决方法: ---截取字符串A的第一个\左边的字符串 select left
evoleht
·
2012-06-14 11:00
sql
SQL Server
字符
ios图书翻页效果
1,Leavesurl:https://github.com/brow/
leaves
2,PaperTouchAPIurl:http://www.code-flakes.com/2009/12/papertouch-api.htmlQuestion
zaitianaoxiang
·
2012-05-10 22:00
iOS 书翻页效果
本文由论坛会员德鲁伊分享
Leaves
是由TowBrow开发的一个简单的图书翻页控件,它巧妙地结合了镜像层、阴影层(用于半透明页)和渐变层(用于阴影)来实现图书的翻页效果。
zaitianaoxiang
·
2012-05-10 22:00
ios
image
iPhone
float
layer
distance
界面中不只有翻书组件
Leaves
时,拖动翻页产生的问题
如果要在Ios5.0之前做到类似于UIPageController的效果,美国人TomBrow写的
Leaves
翻书效果当之无愧。
yanxiaoqing
·
2012-05-03 15:00
ios5
my ReadFood_Fried Eggs with Chopped Chinese Toon
Leaves
香椿头/ Cedrelasinensis http://baike.baidu.com/view/784922.htm谷前椿谷后笋,谷雨/每年的4月20日或21日,二十四节气之第六节气谷雨,顾名思义,播谷降雨是也,是二十四节气之一,同时也是播种移苗、埯瓜点豆的最佳时节。每年4月19日~21日视太阳到达黄经30°时为谷雨。谷雨时雨水增多,大大有利于谷类农作物的生长。香椿头煎蛋FriedEggswit
siemens800
·
2012-04-09 01:00
chinese
my ReadFood_Fried Eggs with Chopped Chinese Toon
Leaves
香椿头/ Cedrelasinensis http://baike.baidu.com/view/784922.htm谷前椿谷后笋,谷雨/每年的4月20日或21日,二十四节气之第六节气谷雨,顾名思义,播谷降雨是也,是二十四节气之一,同时也是播种移苗、埯瓜点豆的最佳时节。每年4月19日~21日视太阳到达黄经30°时为谷雨。谷雨时雨水增多,大大有利于谷类农作物的生长。香椿头煎蛋FriedEggswit
siemens800
·
2012-04-09 01:00
chinese
英文经典名著电子书
Secret Garden)英文经典名著电子书:绑架(Kidnapped)英文经典名著电子书:培根论说集(The Essays)电子书下载:人鼠之间(Of Mice And Men)英文经典名著电子书:草叶集(
Leaves
oywl2008
·
2012-03-23 23:00
书
zoj 1700 || poj 1577 Falling
Leaves
(BST)
题目:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=700早知道这么简单我应该做快点的,事实上做了很久。 输入是“不断去掉二叉树的叶子”输出二叉树的前序遍历、--字符串的处理花了点时间。因为字母是有顺序的所以依次插进树里就行了。27906452012-03-0516:04:20Accepted1700C++0188zisu_1
cqlf__
·
2012-03-05 16:00
c
struct
null
iphone上一种图书翻页效果的实现--
Leaves
Leaves
是由TowBrow开发的一个简单的图书翻页控件,它巧妙地结合了镜像层、阴影层(用于半透明页)和渐变层(用于阴影)来实现图书的翻页效果。
CJsen
·
2012-02-22 21:00
image
null
iPhone
float
layer
distance
人脸数据库汇总
Face Database (Link)■Caltech Computational Vision Group Archive (Cars, Motorcycles, Airplanes, Faces,
Leaves
·
2012-02-16 11:00
数据库
中英对照泰戈尔《飞鸟集》(一)
And yellow
leaves
of autumn, which have no songs, flutter and f
oywl2008
·
2012-02-02 14:00
699 - The Falling
Leaves
/* 简单题: 不需要建树,只需遍历一个记清状态 */ #include #include #include #include #include usingnamespacestd; intresult[200]; intp[10010]; intlen; voidtraverse(int&pos,intloc) { if(pos>a) p[len++]=a; printf("Case%d:
lhshaoren
·
2012-01-31 21:00
699 - The Falling
Leaves
/* 简单题: 不需要建树,只需遍历一个记清状态 */ #include <iostream> #include <cstdio> #include <cstring> #include <string> #include <sstream> using namespace std; int result[200]; int p[1001
lianxiangbus
·
2012-01-31 21:00
in
html5 canvas tree draw
height: 0, width: 0, spread: 0.6, drawLeaves:true, leavesColor:'', leaveType: this.MEDIUM_
LEAVES
xiongzhengxiang
·
2011-12-11 20:00
html5
function
tree
Integer
Random
branch
清理fedora系统
安装yum-utils:yuminstall yum-utils开始清理:清理不被当前系统任何软件所使用的依赖包(应多运行几次):package-cleanup--
leaves
清理当前软件仓库不再支持的孤儿包
ly5156
·
2011-12-08 20:00
extjs综合管理页面
/** * 默认页面 * * @author
leaves
.qq:1330771552 */ Ext.define('SupplyManagementDesktop.defaultsWindow
marlay
·
2011-12-05 11:00
extjs 管理
westlife - the rose
Some say love, it is a river that drowns the tender reed Some say love, it is a razorthat
leaves
your
zhangzhenting
·
2011-12-03 00:00
life
UVa 699 - The Falling
Leaves
UVa699-TheFallingLeaves题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=104&page=show_problem&problem=640#include #include using namespace std;const int maxn = 205;in
寒月
·
2011-11-29 16:00
上一页
5
6
7
8
9
10
11
12
下一页
按字母分类:
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
其他