- Saved searches
- Use saved searches to filter your results more quickly
- BazNick/Red-Black-Tree
- Name already in use
- Sign In Required
- Launching GitHub Desktop
- Launching GitHub Desktop
- Launching Xcode
- Launching Visual Studio Code
- Latest commit
- Git stats
- Files
- README.md
- Building a Red-Black Binary Tree in Python
- 🔗 What is a balanced binary tree?
- 🔗 Why do we want balanced trees?
- 🔗 Properties of a red-black tree
- 🔗 Implementing a Red-Black Tree in Python
- 🔗 Step 1 – RBNode Class
- 🔗 Step 4 — Rotate left
- Saved searches
- Use saved searches to filter your results more quickly
- ersul4ik/rbt
- Name already in use
- Sign In Required
- Launching GitHub Desktop
- Launching GitHub Desktop
- Launching Xcode
- Launching Visual Studio Code
- Latest commit
- Git stats
- Files
- README.md
- About
Saved searches
Use saved searches to filter your results more quickly
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.
Red-Black-Tree using Python
BazNick/Red-Black-Tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Sign In Required
Please sign in to use Codespaces.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching Xcode
If nothing happens, download Xcode and try again.
Launching Visual Studio Code
Your codespace will open once ready.
There was a problem preparing your codespace, please try again.
Latest commit
Git stats
Files
Failed to load latest commit information.
README.md
Red-Black-Tree realisation using Python. Includes followings methods:
- Create tree;
- Delete nodes from the tree;
- Find node in the tree;
- Display all nodes;
- Display height of the tree;
- Display number of black nodes;
- Rotation methods (right rotation, left rotation, left-right rotation, right-left rotation);
Also you may want to see a small wiki about this realisation: https://github.com/BazNick/Red-Black-Tree/wiki
Реализация Красно-Черного Дерева на Python. Включает следующие методы:
- Create tree (Создание дерева, то есть его узлов);
- Delete nodes from the tree (Удаление узлов из дерева);
- Find node in the tree (Нахождение элемента в дереве);
- Display all nodes (Выводит все элементы, которые есть в дереве);
- Display height of the tree (Выводит высоту дерева);
- Display number of black nodes (Выводит количество черных узлов);
- Rotation methods (right rotation, left rotation, left-right rotation, right-left rotation) (Методы вращения: левое, правое, лево-правое и право-левое);
Источник
Building a Red-Black Binary Tree in Python
Curated backend podcasts, videos and articles. All free.
If you’re looking to become a backend developer, or just stay up-to-date with the latest backend technologies and trends, you found the right place. Subscribe below to get a copy of our newsletter, The Boot.dev Beat, each month in your inbox. No spam, no sponsors, totally free.
A red-black tree is a kind of self-balancing binary search tree. Each node stores an extra bit, which we will call the color, red or black. The color ensures that the tree remains approximately balanced during insertions and deletions. When the tree is modified, the new tree is rearranged and repainted to restore the coloring properties that constrain how unbalanced the tree can become in the worst case.
The purpose of a red-black tree is to stay balanced which ensures that its common operations, like lookup and delete, never degrade to worse than O(n*log(n)) .
🔗 What is a balanced binary tree?
Since the reason colors are added to a binary tree is to ensure that it remains balanced, we need to understand how and why a binary tree is balanced. To put it simply, a balanced tree’s branches differ in height by no more than 1.
The following tree is balanced because between its two branches one has a height of 2, and the other 3, meaning they differ by no more than 1.
The next tree is unbalanced because it’s branches differ in height by more than 1. C ’s right side has a height of 2 while its left side has a height of 4).
🔗 Why do we want balanced trees?
Balanced binary search trees ensure speed. The speed of an operation in a binary tree depends on the height of the tree. If the tree is balanced, then the height is only the log of the number of nodes, which means the tree will work as fast as possible. However, if the tree is unbalanced, for example with one really long branch, then the height because the total number of nodes rather than the log.
🔗 Properties of a red-black tree
In addition to all the properties of a Binary Search Tree, a red-black tree must have the following:
- Each node is either red or black
- The root is black. This rule is sometimes omitted. Since the root can always be changed from red to black, but not necessarily vice versa, this rule has little effect on analysis.
- All nil leaf nodes are black.
- If a node is red, then both its children are black.
- All paths from a single node go through the same number of black nodes to reach any of its descendant nil nodes.
🔗 Implementing a Red-Black Tree in Python
🔗 Step 1 – RBNode Class
Our implementation will use a Tree class and a Node class. The Node will be fairly simple, it’s just a constructor.
Next let’s create a tree class with a constructor.
The insert method will look a lot like a traditional binary tree insert method. The biggest difference is that after doing an insert, we’ll call a special fix_insert method. For now just call it, we’ll implement it in just a moment.
🔗 Step 4 — Rotate left
We’ll need some rotation methods in our “fix” step that’s coming up. Let’s code those now.
The real bread and butter is in this step, it’s what makes a red-black tree balanced.
Full Example of Red-Black Tree in Code
Источник
Saved searches
Use saved searches to filter your results more quickly
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.
Python implementation of reb black tree
ersul4ik/rbt
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Sign In Required
Please sign in to use Codespaces.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching Xcode
If nothing happens, download Xcode and try again.
Launching Visual Studio Code
Your codespace will open once ready.
There was a problem preparing your codespace, please try again.
Latest commit
Git stats
Files
Failed to load latest commit information.
README.md
Реализация алгоритма написана на Python 3.
Девушка: Нарисуй дерево. Программист: (рисует бинарное дерево) Девушка: Нет, другое. Программист: Я и красно-черное дерево могу нарисовать.
КЧД наследует все свойства от обычного бинарного дерева + :
- Каждый узел окрашен либо в красный, либо в черный цвет (в структуре данных узла появляется дополнительное поле – бит цвета).
- Корень окрашен в черный цвет.
- Листья(так называемые NULL-узлы) окрашены в черный цвет.
- Каждый красный узел должен иметь два черных дочерних узла. Нужно отметить, что у черного узла могут быть черные дочерние узлы. Красные узлы в качестве дочерних могут иметь только черные.
- Пути от узла к его листьям должны содержать одинаковое количество черных узлов(это черная высота).
About
Python implementation of reb black tree
Источник