Tag

Code

Coding something complex is not simple (wow). I'll help you. In this section, I publish general articles relating to code. It can be Swift, C++ or even PHP. I'm bounded by languages I know ;)

8 posts
Code
Treap: The Easiest Search Tree (Explained)
APRIL 25, 2022

Treap: The Easiest Search Tree (Explained)

Binary search trees are mostly hard. Writing red-black tree is a nightmare. Here, I'm going to explain one of the easiest, yet efficient and powerful balanced binary tree — treap or cartesian tree

12 MIN READ
Quick Guide to Async Await in Swift
APRIL 16, 2022

Quick Guide to Async Await in Swift

Everything you need to know about new Swift asynchronous features. Async await, main actor, task, async get, and possible use cases — all covered.

8 MIN READ
The Mystery of Mach-O Object Structure
APRIL 29, 2021

The Mystery of Mach-O Object Structure

I’m going to tell you about the internals of the Mach-O file and give an introduction to the simple relocatable object file structure

15 MIN READ
Skip List Indexation and kth Maximum
NOVEMBER 5, 2020

Skip List Indexation and kth Maximum

Skip List is a nice structure that lets you to perform insertions, searches, and finding n-th maximum. In this post I focus on skip list indexation

10 MIN READ