⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.c

📁 8051单片机C语言设计完全手册
💻 C
字号:
#include <REG52.H>                /* special function register declarations   */
                                  /* for the intended 8051 derivative         */

#include <stdlib.h>
//#include <alloc.h>
#include <string.h>
#include <stdio.h>

#ifdef MONITOR51                         /* Debugging with Monitor-51 needs   */
char code reserve [3] _at_ 0x23;         /* space for serial interrupt if     */
#endif                                   /* Stop Exection with Serial Intr.   */
                                         /* is enabled                        */
/*------------------------------------------------
The main C function.  Program execution starts
here after stack initialization.
------------------------------------------------*/
void main (void) {

	char *binary(char *ptr[],char *str,int n);/* 函数声明*/
	char *ptr1[5],*temp;
	int i;
/*------------------------------------------------
Setup the serial port for 1200 baud at 16MHz.
------------------------------------------------*/
#ifndef MONITOR51
    SCON  = 0x50;		        /* SCON: mode 1, 8-bit UART, enable rcvr      */
    TMOD |= 0x20;               /* TMOD: timer 1, mode 2, 8-bit reload        */
    TH1   = 221;                /* TH1:  reload value for 1200 baud @ 16MHz   */
    TR1   = 1;                  /* TR1:  timer 1 run                          */
    TI    = 1;                  /* TI:   set TI to send first char of UART    */
#endif
/*------------------------------------------------
Note that an embedded program never exits (because
there is no operating system to return to).  It
must loop and execute forever.
------------------------------------------------*/
	init_mempool (0x1000,0x500);					/*初始化内存池*/	
	for (i=0;i<5;i++)
	{
		ptr1[i]=malloc(20);/*按字典顺序输入字符串*/
		gets(ptr1[i],20);
	}
	printf("\n");
	printf("original string:\n");
	for(i= 0 ; i < 5 ; i++)
		printf("%s\n",ptr1[i]) ;
	printf("input search string:\n");
	temp=malloc(20) ;
	gets(temp,20);/*输入被查找字符串*/
	i=5 ;
	temp=binary(ptr1,temp,i );/*调用查找函数*/
	if (temp) printf("succesful-----%s\n" ,temp);
	else printf("no succesful!\n");
	return;
    while (1) {};
}

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;/*查找失败,返回空指针*/
}



⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -