鱼C论坛

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

[已解决]帮忙找错

[复制链接]
发表于 2020-3-2 13:12:35 | 显示全部楼层 |阅读模式

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

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

x
对已排好序的字符指针数组进行指定字符的查找,字符串按字典顺序排列,查找算法采用二分法。
#include <stdio.h>
#include <alloc.h>
#include <string.h>
char *binary(char *ptr[],char *str,int n);
void main ()
{
        char *temp,*ptr1[]={"BASIC","C","DBASE IV","PASCAL","SQL SERVER"};
        int i,j;
        printf("\n");
        printf("original string :\n");
        for(i=0;i<5;i++)
                printf("%s\n",ptr1[i]);
        printf("input search string:\n");
        temp=(char *)malloc(20);
        gets(temp);
        i=5;
        temp=binary(ptr1,temp,i);
        if(temp)printf("succesful-----%s\n",temp);
        else printf("no succesful\n");
}
char *binary(char *[],char *str,int n)
{
        int hig,low,mid;
        low=0;
        hig=n-1;
        while(low<=hig)
        {
                mid=(low+hig)/2;
                if(strcmp(str,ptr[mid])<0)
                        hig=mid-1;
                else if(strcmp(str,ptr[mid])>0)
                        low=mid+1;
                else 
                        return str;

        }
        return NULL;
}
编译以后出现Cannot open include file: 'alloc.h': No such file or directory的错误,请问下怎么改,不太懂
最佳答案
2020-3-2 13:19:35
还有一些BUG,都帮你改回来了
#include <stdio.h>
#include <malloc.h>
#include <string.h>
char *binary(char *ptr[],char *str,int n);
void main ()
{
        char *temp,*ptr1[]={"BASIC","C","DBASE IV","PASCAL","SQL SERVER"};
        int i,j;
        printf("\n");
        printf("original string :\n");
        for(i=0;i<5;i++)
                printf("%s\n",ptr1[i]);
        printf("input search string:\n");
        temp=(char *)malloc(20);
        gets(temp);
        i=5;
        temp=binary(ptr1,temp,i);
        if(temp)printf("succesful-----%s\n",temp);
        else printf("no succesful\n");
}
char *binary(char *ptr[],char *str,int n)
{
        int hig,low,mid;
        low=0;
        hig=n-1;
        while(low<=hig)
        {
                mid=(low+hig)/2;
                if(strcmp(str,ptr[mid])<0)
                        hig=mid-1;
                else if(strcmp(str,ptr[mid])>0)
                        low=mid+1;
                else 
                        return str;

        }
        return NULL;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-3-2 13:18:23 | 显示全部楼层
改成malloc.h就行了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-3-2 13:19:35 | 显示全部楼层    本楼为最佳答案   
还有一些BUG,都帮你改回来了
#include <stdio.h>
#include <malloc.h>
#include <string.h>
char *binary(char *ptr[],char *str,int n);
void main ()
{
        char *temp,*ptr1[]={"BASIC","C","DBASE IV","PASCAL","SQL SERVER"};
        int i,j;
        printf("\n");
        printf("original string :\n");
        for(i=0;i<5;i++)
                printf("%s\n",ptr1[i]);
        printf("input search string:\n");
        temp=(char *)malloc(20);
        gets(temp);
        i=5;
        temp=binary(ptr1,temp,i);
        if(temp)printf("succesful-----%s\n",temp);
        else printf("no succesful\n");
}
char *binary(char *ptr[],char *str,int n)
{
        int hig,low,mid;
        low=0;
        hig=n-1;
        while(low<=hig)
        {
                mid=(low+hig)/2;
                if(strcmp(str,ptr[mid])<0)
                        hig=mid-1;
                else if(strcmp(str,ptr[mid])>0)
                        low=mid+1;
                else 
                        return str;

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

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-16 02:02

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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