search algorithm - перевод на русский
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

search algorithm - перевод на русский

ANY ALGORITHM WHICH SOLVES THE SEARCH PROBLEM, NAMELY, TO RETRIEVE INFORMATION STORED WITHIN SOME DATA STRUCTURE, OR CALCULATED IN THE SEARCH SPACE OF A PROBLEM DOMAIN, EITHER WITH DISCRETE OR CONTINUOUS VALUES
Search algorithms; Search Algorithm; Informed search algorithm; Search Algorithms; Searching algorithms; Uninformed search algorithm; Informed search; Keyword Search Method; Searching algorithm; Array search; Adversarial search; Search ranking algorithm; Ranking Algorithm; Applications of search algorithms; Quantum search algorithm
  • Visual representation of a [[hash table]], a [[data structure]] that allows for fast retrieval of information.

search algorithm         
алгоритм поиска, поисковый алгоритм
search algorithm         

математика

алгоритм поиска

search algorithm         
алгоритм поиска

Определение

поисковик
м.
Геолог, занимающийся поисками полезных ископаемых.

Википедия

Search algorithm

In computer science, a search algorithm is an algorithm designed to solve a search problem. Search algorithms work to retrieve information stored within particular data structure, or calculated in the search space of a problem domain, with either discrete or continuous values.

Although search engines use search algorithms, they belong to the study of information retrieval, not algorithmics.

The appropriate search algorithm often depends on the data structure being searched, and may also include prior knowledge about the data. Search algorithms can be made faster or more efficient by specially constructed database structures, such as search trees, hash maps, and database indexes.

Search algorithms can be classified based on their mechanism of searching into three types of algorithms: linear, binary, and hashing. Linear search algorithms check every record for the one associated with a target key in a linear fashion. Binary, or half-interval, searches repeatedly target the center of the search structure and divide the search space in half. Comparison search algorithms improve on linear searching by successively eliminating records based on comparisons of the keys until the target record is found, and can be applied on data structures with a defined order. Digital search algorithms work based on the properties of digits in data structures by using numerical keys. Finally, hashing directly maps keys to records based on a hash function.

Algorithms are often evaluated by their computational complexity, or maximum theoretical run time. Binary search functions, for example, have a maximum complexity of O(log n), or logarithmic time. In simple terms, the maximum number of operations needed to find the search target is a logarithmic function of the size of the search space.

Как переводится search algorithm на Русский язык