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
dalian
近期的一些技术新闻
http://agiletour.cn/
dalian
/ IronPython2.7.1发布了,写了一个关于IronPython的PPT,大家可以看看,蜻蜓点水介绍一下DotNet下使用IronPython
admin zffl
·
2011-10-24 11:00
tech
Zoj 3543 Number String (dp) - 2011 ACM-ICPC
Dalian
Regional Contest Problem E
又是一道dp。比赛时以为是数学题,一直在找规律推公式。/**题意:由{1,2,3}组成的一个排列132,对应一个字符串"ID",'I'表示Increase,'D'表示Decrease,对于排列"132",因为12,所以对应的字符串为"ID"。现在反过来,输入一个字符串,仅包含'I','D','?'三种字符,字符串长度n(n #include #include usingnamespacestd;
morgan_xww
·
2011-10-06 16:00
String
Zoj 3541 The Last Puzzle (dp) - 2011 ACM-ICPC
Dalian
Regional Contest Problem C
现场赛时没有想到是dp,还以为是贪心呢,比赛结束前试着暴力dfs了一下,TLE了。/**题意:一条直线上有n(1=3,假设起始点不是端点,而是中间的某个点,在按完一些按钮后必然会按一个端点按钮(此时另一个端点还没有被按下),在按下第一个端点和按下另一个端点按钮过程中,必然要经过该区间内所有的点,其中有一些点已经在之前被按下,很显然,这些点“晚按”比“早按”更优。所以,在端点被按下之前的所有按下操作
morgan_xww
·
2011-10-04 20:00
c
The 36th ACM/ICPC Asia Regional
Dalian
Site —— Online Contest &&Dave
ProblemDescriptionRecently,Daveisboring,soheoftenwalksaround.Hefindsthatsomeplacesaretoocrowded,forexample,theground.Hecouldn'thelptothinkofthedisastershappeningrecently.Crowdedplaceisnotsafe.Heknowst
smallacmer
·
2011-09-23 19:00
struct
input
each
output
The 36th ACM/ICPC Asia Regional
Dalian
Site —— Online Contest &&To Miss Our Children Time
http://acm.hdu.edu.cn/showproblem.php?pid=4001ProblemDescriptionDoyourememberourchildrentime?Whenwearechildren,weareinterestinginalmosteverythingaroundourselves.Alittlethingorasimplegamewillbringsuslo
smallacmer
·
2011-09-22 19:00
Integer
BI
input
Build
each
output
The 36th ACM/ICPC Asia Regional
Dalian
Site —— Online Contest &&The Frog's Games
http://acm.hdu.edu.cn/showproblem.php?pid=4004ProblemDescriptionTheannualGamesinfrogs'kingdomstartedagain.ThemostfamousgameistheIronfrogTriathlon.OnetestintheIronfrogTriathlonisjumping.Thisprojectrequ
smallacmer
·
2011-09-22 18:00
The 36th ACM/ICPC Asia Regional
Dalian
Site —— Online Contest &&The kth great number
http://acm.hdu.edu.cn/showproblem.php?pid=4006ProblemDescriptionXiaoMingandXiaoBaoareplayingasimpleNumbersgame.InaroundXiaoMingcanchoosetowritedownanumber,oraskXiaoBaowhatthekthgreatnumberis.Becauseth
smallacmer
·
2011-09-22 11:00
The 36th ACM/ICPC Asia Regional
Dalian
Site —— Online Contest Find the maximum
http://acm.hdu.edu.cn/showproblem.php?pid=4002 ProblemDescription Euler'sTotientfunction,φ(n)[sometimescalledthephifunction],isusedtodeterminethenumberofnumberslessthannwhicharerelativ
smallacmer
·
2011-09-21 14:00
The 36th ACM/ICPC Asia Regional
Dalian
Site —— Online Contest hdu4007
#include#include#include#include#includeusingnamespacestd;structpoint{ intx,y;}a[1005];boolcmp(pointa,pointb){ returna.xq; inttemp; for(inti=0;i=a[i].y&&a[j].yq.front().x+m) { q.pop()
Mr_JJ_Lian
·
2011-09-05 21:00
ini
The 36th ACM/ICPC Asia Regional
Dalian
Site —— Online Contest hdu4002
#include#includecharcc[][500]=//打表,存的是前n个素数的乘积,节约时间{ "2", "6", "30", "210", "2310", "30030", "510510", "9699690", "223092870", "6469693230",
Mr_JJ_Lian
·
2011-09-05 21:00
The 36th ACM/ICPC Asia Regional
Dalian
Site —— Online Contest hdu4001
#include#include#include#includeusingnamespacestd;structblock{ longlonga,b,c,d;}blocks[1010];longlongdp[1010];/*__int64max(__int64a,__int64b){ if(a>b) returna; elsereturnb; }*/boolcmp(blockaa,bloc
Mr_JJ_Lian
·
2011-09-05 21:00
c
ini
Find the maximum/hdoj 4002 2011 Regional
Dalian
Online euler fuction
这题是用来求1到n间i/euler(i)最大值。可得x/(x(1-1/p1)(1-1/p2)(1-1/p3).....(1-1/pn)) (pi为x的质因数),则有p1*p2*p3....*pn/(1-p1)(1-p2)(1-p3)....(1-pn),p1/(1-p1)是单调递减的。可得n前的全部质数的积,求刚好比n小于等于的最大的积即可。从最小的质数开始乘,直到时刚好不大于n的数即
paul08colin
·
2011-09-04 22:00
String
table
Class
import
The kth great number/hdoj 4006 2011 Regional
Dalian
Online priority queue
Wecanusepriorityqueuetosupportthequestion.Firstly,wepushknumberintopriorityqueue. Then,ifthenumberbiggerthanthetopnumberofthepriorityqueue,pushthenumberintothepriorityqueue,or throw out.Ifinput'Q
paul08colin
·
2011-09-04 14:00
2011 大连网络赛 The 36th ACM/ICPC Asia Regional
Dalian
Site —— Online Contest 解题报告
2011大连网络赛The36thACM/ICPCAsiaRegionalDalianSite——OnlineContest 解题报告昨天我们出了四个题,郁闷的我要死,好吧,结果就这样了,不在抱怨,下一场加油吧,祝愿下面的每一场都可以出现,阿门!昨天我的发挥还算正常。题目传送门:http://acm.hdu.edu.cn/search.php?field=problem&key=The%2036t
wukonwukon
·
2011-09-04 13:00
网络
struct
ini
Summary for The 36th ACM/ICPC Asia Regional
Dalian
Site Online Contest by y @ The Angry teletubbies
这场比赛有双重意义,一就是网络赛的第一场,二就是排位赛的最后一场。至此终于打完所有排位赛了,艰难的保住了第三队的位置,兑现了当初跟川哥组队的承诺,冲三。据老师估计,我们队可能去打北京赛区或者上海赛区,听说这两个赛区都不好打,感觉有点像田忌赛马了。连教说得对,不用管这么多,打好自己的比赛就是了。好吧,开始说下这个大连赛区的题目:1001比较简单的dp,不过dp之前要排个序,比赛时题目没完全看懂。10
y @ The Angry Teletubbies
·
2011-09-04 11:00
The 36th ACM/ICPC Asia Regional
Dalian
Online Contest 大连2011ICPC网络赛 个人题解
The36thACM/ICPCAsiaRegionalDalianOnlineContest大连2011ICPC网络赛个人题解好久不写题,外加上在准备考研,这次有点悲剧,比赛时A了5题,还有一题有点小BUG,比赛后才A。。今年要考南京大学~也没时间准备ICPC了,希望我们队里的那个小孩子能够快快成长起来,我这个队长也可以安心的卸任了,明年将最后一次比赛机会放在NJU吧~恩,顺便去看下高中膜拜过的蒋
yzhw@ujs code my life~
·
2011-09-04 10:00
To Miss Our Children Time, The 36th ACM/ICPC Asia Regional
Dalian
Site —— Online Contest
ToMissOurChildrenTime,The36thACM/ICPCAsiaRegionalDalianSite——OnlineContestToMissOurChildrenTimeTimeLimit:2000/1000MS(Java/Others) MemoryLimit:65768/65768K(Java/Others)ProblemDescriptionDoyouremembe
coreBugZJ
·
2011-09-03 18:00
The kth great number, The 36th ACM/ICPC Asia Regional
Dalian
Site —— Online Contest
Thekthgreatnumber,The36thACM/ICPCAsiaRegionalDalianSite——OnlineContestThekthgreatnumberTimeLimit:2000/1000MS(Java/Others) MemoryLimit:65768/65768K(Java/Others)ProblemDescriptionXiaoMingandXiaoBaoar
coreBugZJ
·
2011-09-03 18:00
WebLogic 安装与配置指南
WebLogic安装与配置指南Version:1.2Author:DuJiangLastModifyData:2002-07-15WithComputerSystem(
Dalian
)Inc.
forkx
·
2011-08-22 10:15
tomcat
weblogic
jboss
休闲
云盘网
苏州新宇软件招聘QA工程师
DextrysisaglobalproviderofProductEngineeringandApplicationServicesOutsourcingwithofficesinBoston,SanFrancisco,
Dalian
Sophia招聘
·
2011-04-21 16:37
职场
软件
工程师
休闲
苏州
FGC 2011 - The Second International Workshop on Frontier of GPU Computing
CALLFORPAPERSFGC2011 - TheSecondInternationalWorkshoponFrontierofGPUComputingTobeheldinconjunctionwithIEEECSE2011
Dalian
OpenHero
·
2011-04-17 20:00
IBM的offer
IBM
Dalian
Global Delivery Company Limited IBM CONFIDENTIAL
上帝卖糕的
·
2011-03-10 16:00
spring
IBM
performance
FGC 2011 - The Second International Workshop on Frontier of GPU Computing
CALLFORPAPERSFGC2011 - TheSecondInternationalWorkshoponFrontierofGPUComputingTobeheldinconjunctionwithCSE2011
Dalian
OpenHero
·
2011-02-17 23:00
项目管理在企业发展中的作用及未来的发展方向―― 来自项目管理群的讨论
lwantstudy-PMO-
DaLian
说:3.9的主题,项目管理在企业发展中的作用未来的发展方向,“思想者_pm_深圳”提出,老谷尝试分享1.项目管理在各性质的公司的推行比例技术与管理之间的比重--
baoqiangwang
·
2010-04-15 15:00
项目管理
企业
发展
休闲
讨论
项目管理在企业发展中的作用及未来的发展方向―― 来自项目管理群的讨论
lwantstudy-PMO-
DaLian
说:3.9的主题,项目管理在企业发展中的作用未来的发展方向,“思想者_pm_深圳”提出,老谷尝试分享1.项目管理在各性质的公司的推行比例技术与管理之间的比重--
baoqiangwang
·
2010-04-15 15:00
项目管理
企业
发展
休闲
讨论
项目管理在企业发展中的作用及未来的发展方向—— 来自项目管理群的讨论
lwantstudy-PMO-
DaLian
说: 3.9的主题,项目管理在企业发展中的作用 未来的发展方向,“思想者_pm_深圳”提出,老谷尝试分享 1.
wapysun
·
2010-04-15 15:00
项目管理
项目管理在企业发展中的作用及未来的发展方向—— 来自项目管理群的讨论
lwantstudy-PMO-
DaLian
说:3.9的主题,项目管理在企业发展中的作用未来的发展方向,“思想者_pm_深圳”提出,老谷尝试分享1.项目管理在各性质的公司的推行比例技术与管理之间的比重--
baoqiangwang
·
2010-04-15 15:00
发展
项目管理
讨论
项目管理
项目管理在企业发展中的作用及未来的发展方向—— 来自项目管理群的讨论
lwantstudy-PMO-
DaLian
说:3.9的主题,项目管理在企业发展中的作用未来的发展方向,“思想者_pm_深圳”提出,老谷尝试分享1.项目管理在各性质的公司的推行比例技术与管理之间的比重--
baoqiangwang
·
2010-04-15 15:00
工作
项目管理
IBM
聊天
电信
产品
项目经理的经营和运营意识—— 来自项目管理群的讨论
老谷说 不在乎大小,在于完整解剖过麻雀的lwantstudy-PMO-
DaLian
说 剖过小麻雀老谷说 好,我们开始交流 今天要和大家交流的不是开发阶段的项目管理过程 这类的项目管理,很多描述,基本是进度和质量为重
baoqiangwang
·
2010-04-13 14:00
游戏
工作
项目管理
咨询
微软
项目经理的经营和运营意识—— 来自项目管理群的讨论
老谷 说 不在乎大小,在于完整解剖过麻雀的 lwantstudy-PMO-
DaLian
说 剖过小麻雀 老谷 说 好,我们开始交流 今天要和大家交流的不是开发阶段的项目管理过程 这类的项目管理,很多描述
wapysun
·
2010-04-13 14:00
项目管理
Why Choose
Dalian
for Investment
WhyChooseDalian FinenaturalharborAdvantageousgeographiclocationPleasantclimateRichnaturalresourcesVasthinterlandandmarketWell-establishedinfrastructuresEfficientandenlightenedgovernmentStrongscientif
godspirits
·
2010-03-16 13:00
application
less
import
Exchange
Nokia
construction
http://www.webservicex.net/globalweather.asmx 天气服务返回值介绍
调用方法:GetWeather 参数(CityName城市名,CountryName国家名,切记国家和城市都为标准的英文名) 结果如下: 首先可以确定他返回值是一段xml,那么我先将它翻译为xml:
Dalian
cstester
·
2009-11-13 09:00
c
xml
less
工具
encoding
OMF手动建立数据库
1.在oracle的文件夹中新建一个你想要数据库名的文件夹,即如图1; 在
DaLian
这个文件目录夹下,新建三个文件夹:Admin Log Data见图
sunrain5921
·
2009-10-31 13:00
oracle
sql
C++
c
C#
Small, small
dalian
massage school
Small,smalldalianmassageschoolTMCislocatedinChiangMaiisaquiettowninthehangzhoumassagenortheastside.Thecentralregionofthecity10to15minutesawayfromthevehicle.Thetwo-storyschoolbuildingisatotalofthreebui
shanghaiseo
·
2009-09-08 18:00
生活
职场
休闲
Hand to head in wry eating
dalian
massage
Handtoheadinwryeatinghangzhoumassagepainkillersjipeumyeoofthemothercouldnotseeoften.'Idonotpyeondutongmanislive'tohearofthemother,'Howgoodissick...'halppunconceived,couldnotimaginethepain.Butthe5-degr
shanghaiseo
·
2009-09-08 10:46
职场
休闲
It is shocking to me that
dalian
massage people
It is shocking to me that
dalian
massage people would continue to actively seek out
dalian
massage
wsb419022
·
2009-06-22 11:00
Web
UP
世界十佳IT外包城市
世界最新兴起的十佳IT外包城市分别是:1.BuenosAires,Argentina(Open-sourcetechnologies)2.Bucharest,Romania(SecuritySystems)3.
Dalian
wapysun
·
2007-10-28 19:00
Security
更改下拉列表中值
);vardalian=newArray("大连理工大学","大连大学");function_setval(n){if(n==2){addsel(shenyang);}if(n==1){addsel(
dalian
guoyaxu
·
2007-07-06 10:00
JavaScript
HTML
Error initializing endpoint java.net.SocketException: Permission denied: listen failed
Errorinitializingendpointjava.net.SocketException:Permissiondenied:listenfailedCreatedMBeanServerwithID:121cc40:10cc009d724:-8000:
dalian
-fa9302df
RandomIgnorant
·
2006-07-30 23:00
超简单IFRAME自适应网页
超简单IFRAME自适应网页此日记TrackBack地址:http://yhe.
dalian
.cn/trackback.do?
天空是蓝色的
·
2005-11-25 09:00
上一页
1
2
下一页
按字母分类:
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
其他