线性搜索

线性搜索 首页 / 结构和算法入门教程 / 线性搜索

线性搜索是一种非常简单的搜索算法,在这种类型的搜索中,对所有元素进行逐个搜索。检查每个元素,如果找到匹配项,则返回该特定项目,否则搜索将继续到数据收集结束。

Linear Search Animation


伪代码

procedure linear_search (list, value)

   for each item in the list
      if match item == value
         return 返回值
      end if
   end for

end procedure

C语言代码实现

#include <stdio.h>

#define MAX 20

//array of items on which linear search will be conducted.
int intArray[MAX] = {1,2,3,4,6,7,9,11,12,14,15,16,17,19,33,34,43,45,55,66};

void printline(int count) {
   int i;
	
   for(i = 0;i <count-1;i++) {
      printf("=");
   }
	
   printf("=\n");
}

//this method makes a linear search. 
int find(int data) {

   int comparisons = 0;
   int index = -1;
   int i;

   //navigate through all items 
   for(i = 0;i<MAX;i++) {
	
      //count the comparisons made 
      comparisons++;
		
      //if data found, break the loop
      if(data == intArray[i]) {
         index = i;
         break;
      }
   }   
	
   printf("Total comparisons made: %d", comparisons);
   return index;
}

void display() {
   int i;
   printf("[");
	
   //navigate through all items 
   for(i = 0;i<MAX;i++) {
      printf("%d ",intArray[i]);
   }
	
   printf("]\n");
}

void main() {
   printf("Input Array: ");
   display();
   printline(50);
	
   //find location of 1
   int location = find(55);

   //if element was found 
   if(location != -1)
      printf("\nElement found at location: %d" ,(location+1));
   else
      printf("Element not found.");
}

代码输出

Input Array: [1 2 3 4 6 7 9 11 12 14 15 16 17 19 33 34 43 45 55 66 ]
==================================================
Total comparisons made: 19
Element found at location: 19

祝学习愉快!(内容编辑有误?请选中要编辑内容 -> 右键 -> 修改 -> 提交!)

教程推荐

手写 Python 虚拟机 -〔海纳〕

结构沟通力 -〔李忠秋〕

Vue 3 企业级项目实战课 -〔杨文坚〕

快手 · 移动端音视频开发实战 -〔展晓凯〕

手把手教你玩音乐 -〔邓柯〕

Django快速开发实战 -〔吕召刚〕

人人都能学会的编程入门课 -〔胡光〕

后端技术面试 38 讲 -〔李智慧〕

说透中台 -〔王健〕

好记忆不如烂笔头。留下您的足迹吧 :)