Andras Csanyi
Andras Csanyi

Andras Csanyi

Follow
Follow
homeDSAHuman skillsSystem DesignDevOpsDevDiaryInterview Katas
Tag

data structures

#data-structures

More content

Read more stories on Hashnode


Articles with this tag

Graph theory

Jan 4, 20232 min read

Basic knowledge for graph processing · Disclaimer! The graph theory described here is simplified and does not cover the whole topic. What you can find...

Graph theory

Data Structures: Hash table

Aug 21, 20228 min read

Introduction We are going to take a look at the hash table data structure. This look will only scratch the surface of the topic, so, please do a...

Data Structures: Hash table

Data Structures: The Queue

Jul 11, 20223 min read

Intro Queue is another well known and barely known data structure. Possibly you won't use it on daily basis, however you will use services built on it...

Data Structures: The Queue

Data Structures: Stack

Jul 11, 20223 min read

Intro Stack is a data structure and it is widely used and not known in the same time. Language runtimes, like JVM and .NET Runtime (including Core)...

Data Structures: Stack

Data Structures: (Doubly) Linked List

May 29, 20225 min read

I fill up the holes in my knowledge regarding data structures and in this article a write up what I have learned about Doubly Linked Lists. I’m happy...

Data Structures: (Doubly) Linked List

Array or LinkedList, or custom data type?

May 29, 20228 min read

I went through the details of Arrays and LinkedLists previously and one of the significant difference between them is that inserting into the sequence...

Array or LinkedList, or custom data type?