VSVector Saurabhinedunode.hashnode.dev·May 9 · 6 min readTime and Space ComplexityEveryone is a coder—until an interviewer asks about the time and space complexity of your program. Time : what's a clock read No this is not a definition of time complexity in computer science. Amount10
VSVector Saurabhinedunode.hashnode.dev·Oct 3, 2024 · 5 min readLinked List (Singly Linked List)Array is a linear data structure.Which has fixed size(contgious memory allocation) and delition and inerstion in Array is difficult. Here the Linked List comes under role. It take the non-contigous memory allocation in (It is implemented on the heap ...10
VSVector Saurabhinedunode.hashnode.dev·Jun 6, 2024 · 3 min readNode JS and Non-Blocking & Blocking IONode js is Run time environment of java-script. Which execute java-script in back-end or in server side with the help of chrome vs-8 engine. What, what thing makes special node js the ans is . Non-blocking Event driven system. So Let's understand fir...10
VSVector Saurabhinedunode.hashnode.dev·Mar 31, 2024 · 4 min readHeap and Stack Memory"Computer memory is like a big city with two main parts: stack memory and heap memory. Stack memory is like a fast and organized subway system, while heap memory is like a huge area with lots of buildings. When we write computer programs, we have to ...10
VSVector Saurabhinedunode.hashnode.dev·Mar 3, 2024 · 4 min readDeep Copy and Shallow CopyOne of the most important concept in java-script When you are dealing with java-script objects. understanding the concepts of shallow copy and deep copy is crucial to avoid unintended side effects and unexpected behavior in your code. 1. Copying Prim...12S