Tagged articles

Two-pointer

5 articles · Page 1 of 1
IT Services Circle
IT Services Circle
Feb 20, 2024 · Fundamentals

LeetCode 392: Determine if a String is a Subsequence Using the Two‑Pointer Technique

This article humorously references recent layoff memes before presenting a detailed tutorial on solving LeetCode problem 392—checking whether string s is a subsequence of t—using a two‑pointer algorithm, complete with step‑by‑step explanation, complexity analysis, visual illustrations, and reference implementations in C++, Java, and Python.

AlgorithmC++LeetCode
0 likes · 8 min read
LeetCode 392: Determine if a String is a Subsequence Using the Two‑Pointer Technique
Nullbody Notes
Nullbody Notes
Nov 20, 2023 · Fundamentals

Counting Valid Triangles: Why Reverse Traversal Matters

The article explains how to count the number of valid triangles that can be formed from an integer array by first sorting the array and then using a reverse‑order two‑pointer technique, detailing each step and providing a complete Go implementation.

AlgorithmTwo-pointersorting
0 likes · 3 min read
Counting Valid Triangles: Why Reverse Traversal Matters
Shepherd Advanced Notes
Shepherd Advanced Notes
Mar 1, 2023 · Fundamentals

Understanding Linked Lists: Storage, Structures, and Two-Pointer Techniques

This article introduces linked lists as a fundamental data structure, compares them with arrays, explains single, doubly, and circular variants, demonstrates insertion, deletion, and boundary handling with dummy nodes, and details two‑pointer techniques for cycle detection and finding the list’s midpoint.

AlgorithmData StructuresLinked List
0 likes · 15 min read
Understanding Linked Lists: Storage, Structures, and Two-Pointer Techniques
NiuNiu MaTe
NiuNiu MaTe
Mar 15, 2022 · Fundamentals

Master the Container With Most Water: Two‑Pointer Solution Explained

This article presents a detailed walkthrough of the LeetCode "Container With Most Water" problem, covering the problem statement, a two‑pointer analysis, and a complete Java implementation, while highlighting key insights for efficiently maximizing water storage.

AlgorithmLeetCodeTwo-pointer
0 likes · 4 min read
Master the Container With Most Water: Two‑Pointer Solution Explained