| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 640 人关注过本帖
标题:把n个字符串中相同的字符串删除到只剩一个,并把剩余字符串全部移到前面。要 ...
取消只看楼主 加入收藏
billjyc
Rank: 1
等 级:新手上路
帖 子:13
专家分:0
注 册:2011-12-15
结帖率:100%
收藏
已结贴  问题点数:5 回复次数:0 
把n个字符串中相同的字符串删除到只剩一个,并把剩余字符串全部移到前面。要求:使用二维数组
大家看看有什么问题
#include<stdio.h>
#include<string.h>
#define row 5
#define col 20
#define n 5

void shanchu(char list[row][col]);

int main(){
  char abc[row][col];
  int index;

  printf("input the %d strings:\n",n);
  for(index=0;index<row;index++){
    printf("input string %d:",index);
    scanf("%s",abc[index]);
  }
  shanchu(abc);
}

void shanchu(char list[row][col]){
  int i,j=0,k=0,t=0;

  for(j=0;j<row;j++){
    for(i=j+1;i<=row-1;i++)
      if(strcmp(list[j],list[i])==0)
      {
        strcpy(list[i],list[i+1]);
      }
  }
  while(k<row-1){
    if(strcmp(list[k],list[k+1])!=0)
      k=k+1;
    else
      break;

  }
    for(t=0;t<k;t++)
      printf("%s\n",list[t]);
}
搜索更多相关主题的帖子: include 字符串 
2011-12-16 17:29
快速回复:把n个字符串中相同的字符串删除到只剩一个,并把剩余字符串全部移到前 ...
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.054984 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved