파이썬에서는 주로 주로 두 가지 검색 알고리즘을 사용합니다. 그 중 첫 번째는 선형 검색이고 두 번째는 이진 검색입니다.
이 두 가지 기술은 주로 주어진 배열이나 주어진 목록에서 요소를 검색하는 데 사용됩니다. 요소를 검색하는 동안 모든 종류의 알고리즘에서 따를 수 있는 두 가지 방법론이 있습니다. 그 중 하나는 재귀적 접근 방식이고 다른 하나는 반복적 접근 방식입니다. 두 가지 접근 방식 모두에서 두 가지 알고리즘을 논의하고 유사한 문제를 해결해 보겠습니다.
선형 검색 기술은 순차 검색이라고도 합니다. “순차 검색”이라는 이름의 의미는 이 검색 알고리즘이 따르는 프로세스에 의해 확실히 정당화됩니다. Python에서 배열이나 목록 내의 요소를 찾기 위해 사용되는 방법 또는 기술입니다.
ㅋㅋㅋ经常使用线性搜索的主要原因。算법
1단계 − 원하는 요소와 주어진 배열에 있는 각 요소를 비교하여 순차적인 순서로 요소를 검색합니다.
步骤 2 − 如果找到所需的元素,则会将元素的索引或位置显示给用户。
3단계 − 배열 내에 요소가 없으면 사용자에게 해당 요소를 찾을 수 없다는 알림이 표시됩니다. 이런 식으로 알고리즘이 처리됩니다.
으아아아
출력으아아아
예(재귀)으아아아
출력으아아아
이진 검색算법
第8步 - 如果关键元素小于或等于被分割数组的中间元素,则被分割数组的后半部分将被忽略。通过这种方式,元素将在数组的任意一半中进行搜索。
因此,与线性搜索相比,复杂度减少了一半或更多,因为有一半的元素将在第一步中被移除或不被考虑。二分搜索的最佳情况时间复杂度为“O(1)”。二分搜索的最坏情况时间复杂度为“O(logn)”。这就是二分搜索算法的工作原理。让我们考虑一个例子,并应用二分搜索算法来找出数组中的关键元素。
In this example, we are going to learn about the process of searching an element in an array using Binary search in recursive approach.
def recursive_binary(arr, first, last, key_element): if first <= last: mid = (first + last) // 2 if arr[mid] == key_element: return mid elif arr[mid] > key_element: return recursive_binary(arr, first, mid - 1, key_element) elif arr[mid] < key_element: return recursive_binary(arr, mid + 1, last, key_element) else: return -1 arr = [20, 40, 60, 80, 100] key = 80 max_size = len(arr) result = recursive_binary(arr, 0, max_size - 1, key) if result != -1: print("The element", key, "is present at index", (result), "in the position", (result + 1)) else: print("The element is not present in the array")
上述程序的输出如下:
The element 80 is found at the index 3 and in the position 4
In this example, we are going to learn about the process of searching an element in an array using Binary search in iterative approach.
def iterative_binary(arr, last, key_element): first = 0 mid = 0 while first <= last: mid = (first + last) // 2 if arr[mid] < key_element: first = mid + 1 elif arr[mid] > key_element: last = mid - 1 else: return mid return -1 arr = [20, 40, 60, 80, 100] key = 80 max_size = len(arr) result = iterative_binary(arr, max_size - 1, key) if result != -1: print("The element", key, "is present at index", (result), "in the position", (result + 1)) else: print("The element is not present in the array")
上述程序的输出如下:
The element 80 is found at the index 3 and in the position 4
这是二分搜索算法的工作原理。根据时间复杂度的概念,我们可以肯定二分搜索算法比线性搜索算法更高效,时间复杂度在其中起着重要的作用。通过使用这种类型的算法,可以搜索数组中的元素。尽管用于解决问题的过程不同,但结果不会波动。这是使用多种算法检查输出一致性的一个优点。
위 내용은 배열의 요소를 검색하는 Python 프로그램의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!