题目:Write code to reverse a C-Style String (C-String means that “abcd” is represented as five characters, including the null character )参考解法:把数组的思维去除,用...
分类:
其他好文 时间:
2015-11-06 19:19:47
阅读次数:
258
题目大意有N个病毒,病毒由A-Z字母构成,N个病毒各不相同。给出一段程序P,由A-Z字母构成,若病毒在在程序P或者P的逆转字符串P'中存在,则该程序P被该病毒感染。求出程序P被多少种病毒感染。题目分析典型的多模式串的字符串匹配问题,考虑使用Trie图。将M个待查的字符串作为模式串插入Trie图中,然...
分类:
其他好文 时间:
2015-09-19 16:45:55
阅读次数:
183
当python的基本功能无法满足要求,或者是为了保密源代码(.py)、遇到性能瓶颈时,我们常常要扩展python,扩展语言可以是C/C++、Java、C#等。为python创建扩展需要三个主要的步骤:创建应用程序代码;利用样板来包装代码;编译与测试。1、 创建应用程序代码
我们创建一个C代码PythonEx.c,实现两个函数fac()和reverse(),分别用来求阶乘和逆转字符串,test()函...
分类:
编程语言 时间:
2015-06-11 13:05:27
阅读次数:
118
字符串上的操作
*今天来总结一下关于串的问题,串包括字符串和数组
*这里一字符串为例:现在来有关字符串的一些算法
*1、逆转字符串revstr(s)
*2、求字符串中的最长回文子串lhw(s)
*3、求字符串的最长前缀的最长后缀lpre_Lpos(s)
*4、求字符串的最长前缀的最长后缀的优美的方法和得到next的数组getnext(s,next)
*5、朴素的字符串的模式匹配算法BF...
分类:
其他好文 时间:
2015-03-28 00:00:05
阅读次数:
380
逆转字符串#include<stdio.h>
#include<string.h>
char*reverse(char*str)
{
inti,j;
for(i=0,j=strlen(str)-1;i<j;++i,--j){
chartmp=str[i];
str[i]=str[j];
str[j]=tmp;
}
returnstr;
}
intmain()
{
charstr[100];
scanf("%s",str);
reverse(..
分类:
其他好文 时间:
2014-10-24 16:50:08
阅读次数:
177
题目:输入一个字符串,逆序输出----------------------------------我是优美的分割线----------------------------------java语言publicclass逆转字符串{ publicstaticvoidmain(String[]args){ //测试字符串 Stringstr="asdfghj"; //字符串转化成字符 char[]strToChar=st..
分类:
其他好文 时间:
2014-10-14 19:51:59
阅读次数:
147
public class Solution { public String reverseWords(String s) { if(s==null||s.length()==0) return ""; s=reverse(s); Strin...
分类:
其他好文 时间:
2014-09-06 22:32:43
阅读次数:
278
?//1、运用到strlen函数取得输入字符串的长度//2、输出时注意数组下标#include#includeusing namespace std;int main(){ int temp; char a[20]; cout>a; temp=strlen(a); fo...
分类:
其他好文 时间:
2014-08-09 18:12:18
阅读次数:
235
public class Solution { public String reverseWords(String s) { String ans=reverse(s); String s2[]=ans.split("\\s+"); ...
分类:
其他好文 时间:
2014-07-21 08:20:33
阅读次数:
203