Gopal Adhikarigopal-adhikari.com.np·Sep 9, 2024Introduction to C++ Programming LanguageC++ is a powerful, high-performance programming language that has been at the core of many modern software applications. Developed by Bjarne Stroustrup in the early 1980s as an extension of the C programming language, C++ introduced object-oriented p...DiscussCPPcoding
mahdim--mdy--m.hashnode.dev·Aug 29, 2024A book about arraysI'm currently writing a book called "Arliz," which is a collection of everything I've learned—and am still learning—about arrays. My goal is to be as accurate as possible. The book is divided into 21 chapters (give or take a few), and I've been worki...Discuss·10 likesarray
Muhammad Awais Khalidmawaiskhalid.hashnode.dev·Aug 17, 2024An introduction to Shared Memory in DPDKIntroduction In this article, I have explained about a basic DPDK application which reads the packets from NIC interface. In this article we will learn about the concept of shared memory in DPDK library and how to do inter-process communication using...Discuss·1 like·33 readscplusplus
Keshav Carpenterblog.keshavcarpenter.tech·Aug 14, 2024Advance OOPS in C++ | A complete guide for Interviews💡 Four Pillars of Object-Oriented Programming: Encapsulation Inheritance Abstraction Polymorphism // Human class class Human { private: string secret = "humansecret"; public: int age = 30, weight = 76; }; // Student class class Stud...DiscussOOPS
Keshav Carpenterblog.keshavcarpenter.tech·Aug 14, 2024Object-Oriented Programming Basics in C++Object-Oriented Programming (OOP) is a programming paradigm centered around the concept of objects. Objects are instances of classes, which act as blueprints. In OOP, code is organized around these objects, each with its own state and behavior. Key C...DiscussOOPS
Tanusha Rainatechshetalks.hashnode.dev·Aug 6, 2024Kicking Off My DSA Journey: LeetCode Like a Lady, Cracking Coding Interviews in HeelsHello, world! I’m excited to announce the launch of my new blog series on Hashnode, titled "LeetCode Like a Lady: Cracking Coding Interviews in Heels". I’ll be documenting my journey through Data Structures and Algorithms (DSA). I've completed the ar...Discuss·10 likesLeetCode Like a Lady: Cracking the Coding Interview in HeelsDSA
Dhruv Chouhandestroycompiler.hashnode.dev·Jul 30, 2024Binary Search - perfect_0Binary search is one of the most important algorithms of the world. This guide is for complete beginners and will help you understand and implement the binary search algorithm in code. It will explain the intuition behind binary search and teach you...Discuss·51 likes·304 readsBinary Search Algorithm
kintsugikintsugicodes.hashnode.dev·Jul 28, 2024Patterns ;0Introduction Hello, fellow coders! I'm excited to share my journey in mastering Data Structures and Algorithms (DSA) with you. Recently, I embarked on a speedrun through TakeYouForward's comprehensive DSA course, and I’ve just completed the Patterns ...Discuss·1 like·43 readsa2z
Jubair Ahmedjubairshaik.hashnode.dev·Jul 11, 2024How to Reverse Only Letters and Vowels in a String Using C++using namespace std; #include <iostream> #include <algorithm> #include <vector> string reverseOnlyLetters(string s) { int low = 0; int high = s.size() - 1; while (low < high) { if (isalpha(s[low]) && isalpha(s[high])) ...Discuss·1 likecode
SHAIK JUBER AHMEDjubairdev.hashnode.dev·Jul 10, 2024Binary Search and Linear Search: Understanding the BasicsLinear search is not the most optimal search algorithm for large datasets, but it is straightforward and works well for small arrays or unsorted data. ! using namespace std; #include <iostream> // linear search int LinearSearch(int arr[], int size...Discusscpp