- 论坛徽章:
- 0
|
help me
- #include <stdio.h>;
- char *combine( char *seqa , char *seqb )
- {
- static char tmpstr[1024]="" ;
- int seqalen = strlen( seqa );
- int seqblen = strlen( seqb );
- int i = 0;
- int j = 0;
- int k = 0;
- // fprintf(stdout , "seqa=[%s] seqb=[%s]\n" , seqa, seqb);
- /*为什么有上面这一行seqa的值不变,否则就变了*/
- while ( ( i < seqalen ) && ( j < seqblen ))
- {
- if ( seqa[i] < seqb[j] )
- {
- tmpstr[k] = seqa[i];
- i++;
- k++;
- } else
- {
- tmpstr[k] = seqb[j];
- k++;
- j++;
- }
- }
- while ( i < seqalen )
- {
- tmpstr[k] = seqa[i];
- i++;
- k++;
- }
- while ( j < seqblen )
- {
- tmpstr[k] = seqb[j];
- k++;
- j++;
- }
- tmpstr[k] = '\0' ;
- return tmpstr;
- }
- main()
- {
- char *seq_a="bdfkxz";
- char *seq_b="celmt";
- char *seq_c;
- int seqclen=0;
- // fprintf(stdout , "seq_a is [%s] \n" , seq_a );
- seq_c = combine( seq_a , seq_b );
- seqclen = strlen(seq_c);
- fprintf(stdout , "seq_a is [%s] \n" , seq_a );
- fprintf(stdout , "seq_b is [%s] \n" , seq_b );
- fprintf(stdout , "seq_c is [%s] seqclen=[%d]\n" , seq_c, seqclen );
- }
复制代码 |
|