Jyotiprakash Mishrablog.jyotiprakash.org·May 15, 2024DSA: Basics of Recursion, Pointers, and Dynamic AllocationRecursion in C Recursion in C is a technique where a function calls itself in order to solve a problem. Each time the function calls itself, a new stack frame is created for that call, containing its own set of local variables. This continues until a...33 likes·1.1K readsDSA
ほしのひかるhikaru.hashnode.dev·Oct 12, 2023167. Two Sum II - Input Array Is SortedGiven a 1-indexed array of integers numbers that is already sorted in non-decreasing order, find two numbers such that they add up to a specific target number. Let these two numbers be numbers[index<sub>1</sub>] and numbers[index<sub>2</sub>] where 1...Java
Abhijeet Kumarknowledgekumar.hashnode.dev·Jan 30, 2023Pointers C++What are pointers? The pointer variable points to a data type of the same type(like int, char etc. ). The address of the variable we are working with is assigned to the pointer. In other words, a pointer is a variable that stores the memory address a...1 likepointers