Module gopy.search
Expand source code
name="search"
from .lsearch import search
from .bsearch import search
from .ternary import search
from .jumpSearch import search
Sub-modules
gopy.search.bsearch
-
Binary search is the most popular Search algorithm. It is efficient and also one of the most commonly used techniques that is used to solve problems …
gopy.search.jumpSearch
-
Jump search technique also works for ordered lists. It creates a block and tries to find the element in that block. If the item is not in the block, …
gopy.search.lsearch
-
Linear search is used on a collections of items. It relies on the technique of traversing a list from start to end by exploring properties of all the …
gopy.search.ternary
-
Like linear search and binary search, ternary search is a searching technique that is used to determine the position of a specific value in an array …