子字符串排序的关键代码
Posted zmmm
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了子字符串排序的关键代码相关的知识,希望对你有一定的参考价值。
#include <stdio.h> #include <string.h> #include <stdlib.h> int main() { char s[20]; char *p[11],temp; while(gets(s)) { int i,j,len; len=strlen(s); for(i=0;i<len;i++) { p[i]=(char *)malloc(sizeof(len-i)); strcpy(p[i],s+i); } for(i=0;i<len-1;i++) for(j=0;j<len-1-i;j++) if(strcmp(p[j],p[j+1])>0) { temp=*p[j]; *p[j]=*p[j+1]; *p[j+1]=temp; } for(i=0;i<len;i++) printf("%s ",p[i]); } return 0; } /* char *p[11]; len=strlen(s); for(i=0;i<len;i++) { p[i]=(char *)malloc(sizeof(len-i)); strcpy(p[i],s+i); } */
以上是关于子字符串排序的关键代码的主要内容,如果未能解决你的问题,请参考以下文章
初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段
初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段