search problem - definition. What is search problem
Diclib.com
قاموس ChatGPT
أدخل كلمة أو عبارة بأي لغة 👆
اللغة:

ترجمة وتحليل الكلمات عن طريق الذكاء الاصطناعي ChatGPT

في هذه الصفحة يمكنك الحصول على تحليل مفصل لكلمة أو عبارة باستخدام أفضل تقنيات الذكاء الاصطناعي المتوفرة اليوم:

  • كيف يتم استخدام الكلمة في اللغة
  • تردد الكلمة
  • ما إذا كانت الكلمة تستخدم في كثير من الأحيان في اللغة المنطوقة أو المكتوبة
  • خيارات الترجمة إلى الروسية أو الإسبانية، على التوالي
  • أمثلة على استخدام الكلمة (عدة عبارات مع الترجمة)
  • أصل الكلمة

%ما هو (من)٪ 1 - تعريف

TYPE OF COMPUTATIONAL PROBLEM REPRESENTED BY A BINARY RELATION

search problem         
<computability> A computational problem that requires identifying a solution from some, possibly infinite, solution space (set of possible solutions). E.g. "What is the millionth prime number?". This contrasts with a {decision problem} which merely asks whether a given answer is a solution or not. (1999-02-15)
Nearest neighbor search         
(AS A FORM OF PROXIMITY SEARCH (METRIC SPACE)) OPTIMIZATION PROBLEM OF FINDING THE POINT IN A GIVEN SET THAT IS CLOSEST (OR MOST SIMILAR) TO A GIVEN POINT
Nearest neighbor problem; Proximity search (metric space); Nearest neighbour search; Closest point search; Nearest neighbour problem; Closest point query; Nearest neighbor query; Nearest neighbour query; Post-office problem; Post office problem; Nearest neighbor method; Post-office search algorithm; Approximate nearest-neighbor search algorithm; Approximation algorithms for nearest-neighbor search; Nearest neighbor distance ratio; Approximate nearest neighbor search algorithms; Applications of nearest neighbor search
Nearest neighbor search (NNS), as a form of proximity search, is the optimization problem of finding the point in a given set that is closest (or most similar) to a given point. Closeness is typically expressed in terms of a dissimilarity function: the less similar the objects, the larger the function values.
post office problem         
(AS A FORM OF PROXIMITY SEARCH (METRIC SPACE)) OPTIMIZATION PROBLEM OF FINDING THE POINT IN A GIVEN SET THAT IS CLOSEST (OR MOST SIMILAR) TO A GIVEN POINT
Nearest neighbor problem; Proximity search (metric space); Nearest neighbour search; Closest point search; Nearest neighbour problem; Closest point query; Nearest neighbor query; Nearest neighbour query; Post-office problem; Post office problem; Nearest neighbor method; Post-office search algorithm; Approximate nearest-neighbor search algorithm; Approximation algorithms for nearest-neighbor search; Nearest neighbor distance ratio; Approximate nearest neighbor search algorithms; Applications of nearest neighbor search
<algorithm> Given a set of points (in N dimensions), find another point which minimises the sum of the distances from that point to each of the others. (2007-03-07)

ويكيبيديا

Search problem

In the mathematics of computational complexity theory, computability theory, and decision theory, a search problem is a type of computational problem represented by a binary relation. Intuitively, the problem consists in finding structure "y" in object "x". An algorithm is said to solve the problem if at least one corresponding structure exists, and then one occurrence of this structure is made output; otherwise, the algorithm stops with an appropriate output ("not found" or any message of the like).

Every search problem also has a corresponding decision problem, namely

L ( R ) = { x y R ( x , y ) } . {\displaystyle L(R)=\{x\mid \exists yR(x,y)\}.\,}

This definition may be generalized to n-ary relations using any suitable encoding which allows multiple strings to be compressed into one string (for instance by listing them consecutively with a delimiter).

More formally, a relation R can be viewed as a search problem, and a Turing machine which calculates R is also said to solve it. More formally, if R is a binary relation such that field(R) ⊆ Γ+ and T is a Turing machine, then T calculates R if:

  • If x is such that there is some y such that R(x, y) then T accepts x with output z such that R(x, z) (there may be multiple y, and T need only find one of them)
  • If x is such that there is no y such that R(x, y) then T rejects x

(Note that the graph of a partial function is a binary relation, and if T calculates a partial function then there is at most one possible output.)

Such problems occur very frequently in graph theory and combinatorial optimization, for example, where searching for structures such as particular matchings, optional cliques, particular stable sets, etc. are subjects of interest.