NSNoreen Sulehryinnoreensulehry.hashnode.dev·Sep 25, 2023 · 2 min readIterators in C++An iterator acts like a pointer to an element inside a container (e.g, maps, vector, list). You can use iterators to navigate through the items, read them, and modify them. Types of Iterators: Input Iterators: Can read from a position Output Iterst...00
NSNoreen Sulehryinnoreensulehry.hashnode.dev·Sep 24, 2023 · 3 min readVectors vs LinkedList in C++Definitions: A vector is a dynamic array or a list that can easily grow and shrink in use. You can store items that can be easily added or removed. Unlike a regular array, you don't need to specify its size ahead of time, as it adjusts its size autom...01R
NSNoreen Sulehryinnoreensulehry.hashnode.dev·Aug 21, 2023 · 2 min readWhy You Should Begin Your Coding Journey with CDeep Dive into Computing: C isn’t just a language; it's a journey into the heart of computers. Grasping C means you’re closer to understanding the essence of how software interacts with hardware. The Granddaddy of Modern Languages: Think of C as the...00