Algorithms and Data Structures [30 Days] Training Camp - sequential search, halved (binary) search, and block search of linear tables (14)

insert image description here

lookup concept

For some real-time systems with a large amount of data, such as ticket booking systems, information retrieval systems on the Internet, etc., search efficiency is particularly important. This time, we will discuss what kind of data structure should be used and what method should be used for search operations, and compare the advantages and disadvantages of various search algorithms in different situations by analyzing their efficiency.

lookup table

A lookup table is a collection of data elements (or records) of the same type.

keywords

keyword isdata element (or record)

Guess you like

Origin blog.csdn.net/weixin_47723732/article/details/127397930