System Design Basics: Part 2

In this post we’ll learn about ways of scaling our system and importance of Load Balancer. You can scale your applications in two ways: Pre-read link Vertical Scaling Horizontal Scaling 1. Vertical scaling is referred as “scale up”, which means the process of adding more resources (CPU/Memory) to your servers. Horizontal scaling is referred as […]

System Design Basics: Part 2 Read More »

Most Useful STL Algorithms For Programming

This post will entirely be about various functions available in STL and it would be your task to completely code & implement them.Do tell me if you have any doubts related to it in the comment section below. Some common Data Structures Implementation In STL : StackSyntax : stack<data_type> stack_nameExample  : stack<int> st;Built-in functions such as top(), push(), pop(), empty(), size() etc. are

Most Useful STL Algorithms For Programming Read More »