Building Stock Market Engine From Scratch in Rust

Building Stock Market Engine From Scratch in Rust

This article is translated from Medium Original: Building Stock Market Engine from scratch in Rust https://github.com/Harshil-Jani/stock_engine_rs Medium This article is relatively basic, but it is very helpful for beginners to understand a simple trading system prototype. From the perspective of the exchange matching engine, the main structure is shown in the figure below: The four … Read more

Implementing a HashMap in C Language

Implementing a HashMap in C Language

In the world of data structures, a HashMap is an efficient tool for storing and retrieving data. It stores data in the form of key-value pairs, allowing for insertions, deletions, and lookups to be performed in average constant time complexity. Today, we will implement a simple HashMap using the C programming language. 1. Introduction to … Read more