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
10340
UVa
10340
All in All
判断s1是不是s2的字串 //这个字串不是连续字串本来想迭代,不过循环不好处理也没想到什么高效的算法干脆递归了每次从母串中的第n个位置查找字串中的下一个字符查找到了递归处理下一个,直到母串or字串结束母串结束时字串未结束returnfalse母串未结束字串结束了returntrue要是没查到呢?returnfalse 这时上一级不会直接return,而是continue查找直到世界尽头(什么鬼咳
a1s4z5
·
2014-12-19 21:00
UVA -
10340
- All in All (字符串处理!)
题目链接:AllinAllProblemEAllinAllInput:standardinputOutput:standardoutputTimeLimit:2secondsMemoryLimit:32MBYouhavedevisedanewencryptiontechniquewhichencodesamessagebyinsertingbetweenitscharactersrandomlyg
u014355480
·
2014-12-01 21:00
Algorithm
C++
字符串
ICPC
uva
uva--
10340
+递归
题意: 输入两个字符串s,t,然后问你是否可以通过删除t中的一些字符得到s。思路: 如果s中的字符依次在t中出现(不一定需要相邻,只强调顺序),则显然可以通过删除一些字符得到s;那么我们可以先在t中找到s中的第一个字符,然后在这个字符后找s的第二个字符,依次下去,如果能到达s中的最后一个字符,显然就可以,否则不可以。具体编程实现时,可以通过递归来达到这个过程。(开始的时候我用的是dfs,费时将近
acm_lkl
·
2014-11-18 16:00
递归
uva
UVa
10340
- All in All
也是下午上课时看书有的思路,交了2次,第一次数组1000,开小了,RE了一次。第二次怒开100000,Ac了。#include #include #definemaxn100000 intmain() { inti,j,m,n,x,y,z; chara[maxn]; charb[maxn]; memset(a,0,sizeof(a)); memset(b,0,sizeof(b)); while(s
wcr1996
·
2014-10-18 21:00
uva
UVA -
10340
All in All
题目大意:给出两个字符串,判断串1是否为串2的子串,这里的子串不要求在串2中连续,但是要保证顺序一致解题思路:循环遍历即可#include intmain(){ chars1[100000],s2[100000]; while(scanf("%s%s",s1,s2)!=EOF){ intcnt=0; for(inti=0;s2[i]!='\0';i++) if(s1[cnt]==s2[i]) c
kl28978113
·
2014-09-26 21:00
UVA -
10340
All in All(水题)
ProblemEAllinAllInput: standardinputOutput: standardoutputTimeLimit: 2secondsMemoryLimit: 32MBYouhavedevisedanewencryptiontechniquewhichencodesamessagebyinsertingbetweenitscharactersrandomlygenerateds
HelloWorld10086
·
2014-09-13 10:00
in
uva
all
all
10340
uva:
10340
- All in All(字符串匹配)
题目:
10340
-AllinAll题目大意:给出字符串s和t,问s是否是t的子串。s若去掉某些字符能和t一样,那么t是s的子串。解题思路:匹配字符。t的每个字符和s中的字符匹配。
u012997373
·
2014-07-04 01:00
习题3-9 子序列 UVa
10340
1.题目描述:点击打开链接2.解题思路:先判断s,t两字符串的长度;然后从s的第一个字符开始,一个个在t中寻找,若找到输出YES,否则输出NO3.代码:#include #include #include #include #definemax100000 chars[max],t[max]; intmain() { //freopen("input.txt","r",stdin); //fre
u014800748
·
2014-06-26 14:00
uva
UVa
10340
- All in All
传送门UVa
10340
-AllinAll题意:查找str中有没有包含substr。思路:偷懒,直接用string,根据substr一直往前查找,如果能找完substr,YES。
u014247806
·
2014-06-05 08:00
ACM
uva
[模拟]All in All uva
10340
ProblemEAllinAllInput: standardinputOutput: standardoutputTimeLimit: 2secondsMemoryLimit: 32MBYouhavedevisedanewencryptiontechniquewhichencodesamessagebyinsertingbetweenitscharactersrandomlygenerateds
u011194165
·
2014-02-20 19:00
模拟
hdu2084 数塔【简单DP】
1000MS(Java/Others)MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):17241AcceptedSubmission(s):
10340
ProblemDescription
u012678352
·
2013-12-09 13:00
c
dp
Uva
10340
All in All
题目链接:Uva
10340
AllinAll题目大意:给定两个字符串s和t,判断s是否为t的子串。即从t中移除若干个字符,剩下的字符是否可以得到s。
tonghu2010
·
2013-12-02 00:00
UVA
10340
题意:从字符串2中找出是否存在能组成字符串1,要按照顺序思路:有点水。。。就是简单的暴力搜索#include #include #include #defineN100010 usingnamespacestd; charstr1[N],str2[N]; ints[N]; intmain(){ while(scanf("%s",str1)!=EOF){ scanf("%s",str2); i
u011345461
·
2013-11-19 20:00
UVa
10340
All in All (字符串处理&编程技巧)
10340
-AllinAllTimelimit:3.000secondshttp://uva.onlinejudge.org/index.php?
synapse7
·
2013-09-02 20:00
C++
ACM
uva
uva
10340
All in All
题意:蛮水的一道题,只要看串a的字符是否依次出现过串b就行了#include #include #include usingnamespacestd; constintMAXN=100005; chara[MAXN],b[MAXN]; intmain() { while(cin>>a>>b) { intcur=0; intlen_a=strlen(a),len_b=strlen(b); fo
u011345136
·
2013-08-28 08:00
UVA
10340
All in All 子序列判定 贪心
题意:给出两个字符串,问第一个字符串是否是第二个的子序列。(不一定需要连续的字串)只要每次从左向右寻找匹配字符,找到父序列的最右匹配字符的字串,然后从它的下个位置继续找下一个匹配。如果找完父串还没找到就表示不是子序列,如果找到就退出。代码:/* *Author:illuz *Blog:http://blog.csdn.net/hcbbt *File:uva10057.cpp *Lauguage:C
hcbbt
·
2013-08-25 21:00
ACM
uva
10340
All in All(子串)
AllinAllInput: standardinputOutput: standardoutputTimeLimit: 2secondsMemoryLimit: 32MBYouhavedevisedanewencryptiontechniquewhichencodesamessagebyinsertingbetweenitscharactersrandomlygeneratedstringsin
u011328934
·
2013-08-18 10:00
UVA
10340
All in All (字符串匹配+水题)
ProblemEAllinAllInput: standardinputOutput: standardoutputTimeLimit: 2secondsMemoryLimit: 32MBYouhavedevisedanewencryptiontechniquewhichencodesamessagebyinsertingbetweenitscharactersrandomlygenerateds
u011217342
·
2013-08-16 00:00
UVA
10340
- All in All 水~
看题传送门ProblemEAllinAllInput:standardinputOutput:standardoutputTimeLimit:2secondsMemoryLimit:32MBYouhavedevisedanewencryptiontechniquewhichencodesamessagebyinsertingbetweenitscharactersrandomlygenerated
murmured
·
2013-08-07 10:00
菜鸟学习SQL注射
http://www.2cto.com/Article/200606/
10340
.html一般国内的小一点的新闻站点程序都有""&request这种漏洞,下面我讲解攻击方法在地址栏:and1=1查看漏洞是否存在
feier7501
·
2013-08-03 14:00
闲时看看, 比较有益的文章地址
http://www.csdn.net/article/2013-05-06/2815141-sina-xujia-venturehttp://i2.feixin.10086.cn/pages/
10340
mchdba
·
2013-05-07 10:00
mysql
dos
博客
life
文档
uva
10340
- All in All(子序列判定)
做到这里了,心里还有有些疑惑,这一章不是高效算法吗??为什么我做了这么多了,写的还是通用算法啊,这个题是大水题,不多说了。小经验,在for循环中,有continue和break两类强制性命令,这两个命令我们要知道一点:for(inti=0;i #include #defineSIZE1000000 chars[SIZE],t[SIZE]; intmain() { intlens,lent; cha
shankeliupo
·
2013-03-27 16:00
uva
10340
Ail in All
题意:输入两个字符串s和t,判断是否可以从t种删除0个或多个字符(其他字符不变),得到字符串s,比如abcde可以得到bce,单数无法得到dc分析:简单模拟即可1#include 2#include 3#include 4#definezz 5usingnamespacestd; 6intmain(){ 7#ifndefzz 8freopen("in.txt","r",stdin);
·
2013-02-10 15:00
uva
UVA
10340
All in All
大意不再赘述。思路:对s,t扫描一遍即可。注意字符串的大小大概是10万左右。#include #include #include #include #include #include usingnamespacestd; constintMAXN=101000; chars1[MAXN],s2[MAXN]; intCmp(char*s1,char*s2) { inti
Wall_F
·
2013-01-18 18:00
UVA
10340
#include #include #include usingnamespacestd; //判断a是不是b的子串 intmain(){ stringa,b; while(cin>>a>>b){ inti=0,j=0,len_a,len_b; len_a=a.length(); len_b=b.length(); if(len_a>len_b) printf("No\n"); else{ whi
chen895281773
·
2013-01-02 22:00
python 执行mongoexport ERROR: too many positional options异常
异常:ERROR:toomanypositionaloptions按照网上资料,需要在--query参数增加单引号,然后报json不能解析异常:
10340
FailureparsingJSONstringnear
lookqlp
·
2012-10-29 12:00
uva
10340
- All in All
ProblemEAllinAllInput:standardinputOutput:standardoutputTimeLimit:2secondsMemoryLimit:32MBYouhavedevisedanewencryptiontechniquewhichencodesamessagebyinsertingbetweenitscharactersrandomlygeneratedstrin
Frankiller
·
2012-08-23 17:00
input
each
encryption
output
concatenation
UVa
10340
- All in All
链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=113&page=show_problem&problem=1281原题:Youhavedevisedanewencryptiontechniquewhichencodesamessagebyinsertingbetweenitschar
shuangde800
·
2012-08-11 23:00
UVa
10340
- All in All
链接: http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=113&page=show_problem&problem=1281 原题: You have devised a new encryption technique which encode
king_tt
·
2012-08-11 23:00
uva
UVa
10340
- All in All
字符串匹配,满水的一个题了,不过记得数组得开大点,还有让我比较郁闷的就是,昨晚交的题,等了得半个小时吧,一直在排队,一直到今早才判出来~代码如下:#include #include #include #include #include #include usingnamespacestd; chara[100000+2],b[100000+2]; intmain() { #ifdeftest fr
GooMaple
·
2012-07-31 09:00
10340
- All in All
/* 简单题 题意:s是否为t的子序列 注意:①处出错,Yes写成了YES */ #include #include constintnMax=100000; chars[nMax],t[nMax]; ints_len,t_len; intmain() { //freopen("f://data.in","r",stdin); while(scanf("%s%s",s,t)!=EOF) { s
lhshaoren
·
2012-05-06 10:00
Oracle BIEE在linux下的安装
Hat Enterprise Linux AS release 4 (Nahant Update 4)Oracle Database 10.2.0.1.0BIEE_linux_x86_redhat_
10340
thomas0988
·
2012-04-19 00:00
oracle
Oracle BIEE在linux下的安装
Hat Enterprise Linux AS release 4 (Nahant Update 4)Oracle Database 10.2.0.1.0BIEE_linux_x86_redhat_
10340
thomas0988
·
2012-04-19 00:00
oracle
Oracle BIEE在linux下的安装
Hat Enterprise Linux AS release 4 (Nahant Update 4)Oracle Database 10.2.0.1.0BIEE_linux_x86_redhat_
10340
thomas0988
·
2012-04-19 00:00
oracle
UVa
10340
All in All
UVa
10340
AllinAll题目大意:给出两个字符串s、t,判断s是否是t的子序列。按顺序在t中寻找每一个s中的字符即可,每次记录该字符在上一个字符出现位置之后的第一次出现的位置。
心如止水
·
2011-05-21 08:00
Oracle BIEE在linux下的安装
平台安装手册系统环境:RedHatEnterpriseLinuxASrelease4(NahantUpdate4)OracleDatabase10.2.0.1.0BIEE_linux_x86_redhat_
10340
markzpj
·
2011-03-30 11:13
oracle
linux
职场
休闲
BIEE
上一页
1
2
3
下一页
按字母分类:
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
其他