- August 12, 2020
- Nikolay Kostov (Nikolay.IT)
Overview of some of the advanced .NET data structures. The video is recorded in 2013 in Bulgarian.
Topics covered:
- Standard .NET Data Structures
- Wintellect Power Collections
- Installation
- Power Collection Classes
- Implementing Priority Queue
- C5 Collections
- Other Advanced Data Structures
- Suffix trees, interval trees, ropes, tries, etc.
Read More
- August 01, 2020
- Nikolay Kostov (Nikolay.IT)
Overview of dictionaries, hash tables and sets. The video is recorded in 2013 in Bulgarian.
Topics covered:
- Dictionaries
- Hash Tables
- Dictionary<TKey, TValue> Class
- Sets: HashSet<T> and SortedSet<T>
Read More
- July 20, 2020
- Nikolay Kostov (Nikolay.IT)
Overview of trees and tree traversal algorithms. The video is recorded in 2013 in Bulgarian.
Topics covered:
- Tree-like Data Structures
- Trees and Related Terminology
- Implementing Trees
- Traversing Trees
- Balanced Search Trees
Read More
- July 13, 2020
- Nikolay Kostov (Nikolay.IT)
Overview of linear data structures such as lists, linked lists, stacks and queues. The video is recorded in 2015 in Bulgarian.
Topics covered:
- Lists
- Static and Linked Implementation
List<T>
and LinkedList<T>
- Stacks
- Static and Linked Implementation
- The
Stack<T>
Class
- Queues
- Circular and Linked Implementation
- The
Queue<T>
Class
Read More
- July 02, 2020
- Nikolay Kostov (Nikolay.IT)
Topics covered:
- SQL Profilers
- The N+1 Query Problem
- Incorrect Use of ToList()
- Incorrect use of SELECT *
- Deleting objects faster with native SQL
Read More