鱼C论坛

 找回密码
 立即注册
查看: 2625|回复: 2

数组类问题

[复制链接]
发表于 2018-6-10 16:58:29 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
从键盘输入一个字符,用折半查找法找出该字符在已排序的字符串a中的位置。若不在a中,则打印该字符不在a中。

#include "stdio.h"
int  main()
{
    char a[12]="abcdsfklmnp", ch;
        int  top, bot, mid;
        printf("input a character   \n");
        scanf("%c", &ch);
        printf("ch = %c\n", ch);
        .............
        if(bot > top)
                printf("该字符不在a中  \n");

        return 0;
}
那路大神来求救一哈。。。。中间的程序怎么写啊
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2018-6-13 22:22:42 | 显示全部楼层
#include <stdio.h>


int  main() 
{ 
    char a[12]="abcdsfklmnp", ch;
    int  top, bot, mid;
    
    printf("input a character   \n");
    scanf("%c", &ch);
    
        printf("ch = %c\n", ch);
    
        top = 10;
        bot = 0;

        while(top >= bot)
        {
                mid = (top+bot)/2;
                
                if(a[mid] == ch)
                {
                        printf("位置: %d\n", mid);
                        break;
                }
                else if(a[mid] > ch)
                {
                        top = mid-1;
                }
                else
                {
                        bot = mid+1;
                }
        }

        if(bot > top)
                printf("该字符不在a中  \n");

        return 0;
}

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2018-6-13 22:43:18 | 显示全部楼层


你的字符串没有排序,s不应该出现在那个位置,我给改为e了
#include "stdio.h" 
int  main() 
{ 
    char a[12]="abcdefklmnp", ch;
        int  top, bot, mid;
        printf("input a character   \n");
        scanf("%c", &ch);
        printf("ch = %c\n", ch);
        bot = 0;
        top = 10;
        
        while(bot <= top)
        {
                mid = ( bot + top ) / 2;
                if(a[mid] == ch)
                {
                        printf("%d", mid);
                        return 0;
                        }
                        else if(a[mid] > ch)
                        {
                                top = mid - 1;
                        }
                        else
                        {
                                bot = mid + 1;
                        }
                }
        if(bot > top)
                printf("该字符不在a中  \n");

        return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-18 15:43

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表