- 使用 C 的 DSA 教程
- 使用 C 的 DSA - 主頁
- 使用 C 的 DSA - 概述
- 使用 C 的 DSA - 環境
- 使用 C 的 DSA - 演算法
- 使用 C 的 DSA - 概念
- 使用 C 的 DSA - 陣列
- 使用 C 的 DSA - 連結串列
- 使用 C 的 DSA - 雙鏈表
- 使用 C 的 DSA - 迴圈連結串列
- 使用 C 的 DSA - 棧
- 使用 C 的 DSA - 解析表示式
- 使用 C 的 DSA - 佇列
- 使用 C 的 DSA - 優先順序佇列
- 使用 C 的 DSA - 樹
- 使用 C 的 DSA - 雜湊表
- 使用 C 的 DSA - 堆
- 使用 C 的 DSA - 圖
- 使用 C 的 DSA - 搜尋技術
- 使用 C 的 DSA - 排序技術
- 使用 C 的 DSA - 遞迴
- 使用 C 的 DSA 實用資源
- 使用 C 的 DSA - 快速指南
- 使用 C 的 DSA - 實用資源
- 使用 C 的 DSA - 討論
使用 C 的 DSA - 線性搜尋
概述
線性搜尋是一種非常簡單的搜尋演算法。在此類搜尋中,對所有項按順序進行搜尋。檢查每一項,如果找到匹配項,則返回該特定項,否則繼續搜尋,直至資料集合結束。
演算法
Linear Search ( A: array of item, n: total no. of items ,x: item to be searched) Step 1: Set i to 1 Step 2: if i > n then go to step 7 Step 3: if A[i] = x then go to step 6 Step 4: Set i to i + 1 Step 5: Go to Step 2 Step 6: Print Element x Found at index i and go to step 8 Step 7: Print element not found Step 8: Exit
示例
#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");
}
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
dsa_using_c_search_techniques.htm
廣告