mirror of
https://github.com/mfocko/blog.git
synced 2024-11-22 13:03:47 +01:00
fix: redo descriptions and add tags
Signed-off-by: Matej Focko <mfocko@redhat.com>
This commit is contained in:
parent
34f0c74b36
commit
39e6d5196b
5 changed files with 26 additions and 5 deletions
|
@ -1,8 +1,12 @@
|
||||||
---
|
---
|
||||||
title: Vague postconditions and proving correctness of algorithms
|
title: Vague postconditions and proving correctness of algorithms
|
||||||
description: |
|
description: |
|
||||||
Practical example that shows how precise postconditions can help with both
|
Debugging and testing with precise postconditions.
|
||||||
debugging and testing of the code.
|
tags:
|
||||||
|
- python
|
||||||
|
- testing
|
||||||
|
- postconditions
|
||||||
|
- sorting
|
||||||
---
|
---
|
||||||
|
|
||||||
## Introduction
|
## Introduction
|
||||||
|
|
|
@ -2,6 +2,12 @@
|
||||||
title: Time complexity of ‹extend›
|
title: Time complexity of ‹extend›
|
||||||
description: |
|
description: |
|
||||||
How to make inefficient algorithm unknowingly.
|
How to make inefficient algorithm unknowingly.
|
||||||
|
tags:
|
||||||
|
- c
|
||||||
|
- python
|
||||||
|
- dynamic array
|
||||||
|
- time complexity
|
||||||
|
- recursion
|
||||||
---
|
---
|
||||||
|
|
||||||
## Introduction
|
## Introduction
|
||||||
|
|
|
@ -1,8 +1,11 @@
|
||||||
---
|
---
|
||||||
title: Použití červeno-černých stromů
|
title: Použití červeno-černých stromů
|
||||||
description: |
|
description: |
|
||||||
Ukázka použití červeno-černých stromů pro implementaci množiny nebo mapy
|
Ukázka použití červeno-černých stromů v standardních knižnicích známých jazyků.
|
||||||
a ukázky jednotlivých implementací ve standardních knižnicích známých jazyků.
|
tags:
|
||||||
|
- balanced trees
|
||||||
|
- red-black trees
|
||||||
|
- applications
|
||||||
---
|
---
|
||||||
|
|
||||||
## Použití
|
## Použití
|
||||||
|
|
|
@ -2,6 +2,9 @@
|
||||||
title: Distance boundaries from BFS tree on undirected graphs
|
title: Distance boundaries from BFS tree on undirected graphs
|
||||||
description: |
|
description: |
|
||||||
Short explanation of distance boundaries deduced from a BFS tree.
|
Short explanation of distance boundaries deduced from a BFS tree.
|
||||||
|
tags:
|
||||||
|
- graphs
|
||||||
|
- bfs
|
||||||
---
|
---
|
||||||
|
|
||||||
## Introduction
|
## Introduction
|
||||||
|
|
|
@ -1,7 +1,12 @@
|
||||||
---
|
---
|
||||||
title: Iterative algorithms via iterators
|
title: Iterative algorithms via iterators
|
||||||
description: |
|
description: |
|
||||||
Examples of iterative implementations of DFS using iterators.
|
Iterative DFS using iterators.
|
||||||
|
tags:
|
||||||
|
- csharp
|
||||||
|
- graphs
|
||||||
|
- iterators
|
||||||
|
- iterative
|
||||||
---
|
---
|
||||||
|
|
||||||
## Introduction
|
## Introduction
|
||||||
|
|
Loading…
Reference in a new issue