-
21 binary classification
разделение данного набора объектов на две группы в зависимости от того, обладают ли они определённым свойством или нет. Некоторые типичные примеры задач двоичной классификации: медицинская диагностика с целью установить, страдает ли пациент определённой болезнью или нет (здесь признак классификации - болезнь); контроль качества на производственном предприятии - можно ли считать новый продукт пригодным для выпуска в продажу или его следует забраковать (здесь признак классификации - соответствие техническим требованиям); при поиске данных или документов - принятие решения о том, можно ли включить страницу или статью в набор результатов поиска (здесь признак классификации - их релевантность запросу, обычно наличие в тексте определённого слова)Англо-русский толковый словарь терминов и сокращений по ВТ, Интернету и программированию. > binary classification
-
22 tree structure
способ организации данных в виде иерархической структуры с одним корнем и несколькими ветвями, подобно генеалогическому дереву. Существует только один возможный путь (маршрут) между любыми двумя элементами данных в древовидной структуре. Такое представление удобно для двоичного поиска (binary search)Англо-русский толковый словарь терминов и сокращений по ВТ, Интернету и программированию. > tree structure
-
23 binary tree
-
24 binary search tree
1) Компьютерная техника: двоичное дерево2) Математика: двоичное дерево поиска, дерево двоичного поиска -
25 binary space partitioning tree
Вычислительная техника: двоичное дерево распределения пространстваУниверсальный англо-русский словарь > binary space partitioning tree
-
26 binary tree
1) Вычислительная техника: двоичное дерево2) Робототехника: бинарное дерево -
27 binary tree balance
Вычислительная техника: балансировка двоичного дерева -
28 binary tree representation
Вычислительная техника: представление в виде двоичного дереваУниверсальный англо-русский словарь > binary tree representation
-
29 binary tree searching
Математика: поиск по бинарному дереву -
30 binary-tree algorithms
Программирование: алгоритмы бинарных деревьевУниверсальный англо-русский словарь > binary-tree algorithms
-
31 binary tree
двоичное дерево, бинарное дерево -
32 binary tree
English-Russian dictionary of computer science and programming > binary tree
-
33 binary tree
бинарное дерево, двоичное дерево
-
34 binary tree balance
Англо-русский словарь компьютерных и интернет терминов > binary tree balance
-
35 binary tree representation
Англо-русский словарь компьютерных и интернет терминов > binary tree representation
-
36 binary tree
мат. -
37 binary search tree
двоичное дерево; дерево двоичного поиска -
38 binary space partitioning tree
English-Russian information technology > binary space partitioning tree
-
39 binary tree balance
English-Russian information technology > binary tree balance
-
40 binary tree representation
English-Russian information technology > binary tree representation
См. также в других словарях:
Binary space partitioning — (BSP) is a method for recursively subdividing a space into convex sets by hyperplanes. This subdivision gives rise to a representation of the scene by means of a tree data structure known as a BSP tree.In simpler words, it is a method of breaking … Wikipedia
Binary Tree Sort — (im Deutschen auch Binarytreesort) ist ein einfacher, nicht stabiler Sortieralgorithmus. Inhaltsverzeichnis 1 Prinzip 2 Komplexität 3 Vor und Nachteile 4 Implementierungen … Deutsch Wikipedia
Binary — means composed of two parts or two pieces . It contrasts with Unary, Ternary, Quaternary, and so on.Binary may also refer to:* Binary option, also known as digital option OR all or nothing option * Binary numeral system, a representation for… … Wikipedia
Binary classification — is the task of classifying the members of a given set of objects into two groups on the basis of whether they have some property or not. Some typical binary classification tasks are * medical testing to determine if a patient has certain disease… … Wikipedia
Binary tree — Not to be confused with B tree. A simple binary tree of size 9 and height 3, with a root node whose value is 2. The above tree is unbalanced and not sorted. In computer science, a binary tree is a tree data structure in which each node has at… … Wikipedia
Binary search tree — In computer science, a binary search tree (BST) is a binary tree data structurewhich has the following properties: *each node (item in the tree) has a value; *a total order (linear order) is defined on these values; *the left subtree of a node… … Wikipedia
Tree (data structure) — A simple unordered tree; in this diagram, the node labeled 7 has two children, labeled 2 and 6, and one parent, labeled 2. The root node, at the top, has no parent. In computer science, a tree is a widely used data structure that emulates a… … Wikipedia
Binary heap — Example of a complete binary max heap Example of a complete binary min heap A binary … Wikipedia
Tree traversal — Graph and tree search algorithms Alpha beta pruning A* B* Beam Bellman–Ford algorithm Best first Bidirectional … Wikipedia
Binary decision diagram — In the field of computer science, a binary decision diagram (BDD) or branching program, like a negation normal form (NNF) or a propositional directed acyclic graph (PDAG), is a data structure that is used to represent a Boolean function. On a… … Wikipedia
Tree rotation — A tree rotation is an operation on a binary search tree that changes the structure without interfering with the order of the elements. A tree rotation moves one node up in the tree and one node down. They are used to change the shape of the tree … Wikipedia