码迷,mamicode.com
首页 > 其他好文 > 详细

s_search.c

时间:2018-07-03 00:57:19      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:i++   key   class   value   printf   sea   pre   counter   \n   

#include <stdio.h>
#include <stdlib.h>

int Data[20] = {1, 7, 9, 12, 15, 16, 20, 32, 35, 67, 78, 80, 83, 89, 90, 92, 97, 108, 120, 177};
int Counter = 1;

int Seq_Search(int Key)
{
    int i;

    for ( i = 0; i < 20; i++ )
    {
        printf("[%d]", Data[i]);
        if ( Key == Data[i] )
            return 1;
        Counter++;
    }
    return 0;
}

void main()
{
    int KeyValue;

    printf("Please enter your key value : ");
    scanf("%d", &KeyValue);

    if( Seq_Search(KeyValue))
        printf("\nSearch Time = %d\n", Counter);
    else
        printf("No Found!!\n");
}

  

s_search.c

标签:i++   key   class   value   printf   sea   pre   counter   \n   

原文地址:https://www.cnblogs.com/lifelessfaultless/p/9256560.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!