Tag

BFS

0 views collected around this technical thread.

Test Development Learning Exchange
Test Development Learning Exchange
Jan 18, 2025 · Fundamentals

Guide to Learning Python Data Structures: Concepts, Practice, and Advanced Topics

This article provides a step‑by‑step guide to learning Python data structures, covering basic concepts, built‑in types, hands‑on practice, advanced structures, algorithm relationships, resources, community engagement, and continuous self‑challenge to improve problem‑solving skills.

AlgorithmsBFSData Structures
0 likes · 6 min read
Guide to Learning Python Data Structures: Concepts, Practice, and Advanced Topics
Sohu Tech Products
Sohu Tech Products
May 31, 2023 · Fundamentals

Graph Theory Basics: Concepts, Storage, and Traversal (DFS & BFS)

This article introduces the basic concepts of graphs, including vertices, edges, directed and undirected types, explains common storage methods such as adjacency matrices and adjacency lists with examples, and demonstrates graph traversal techniques like depth‑first and breadth‑first search using Java code.

BFSDFSData Structures
0 likes · 6 min read
Graph Theory Basics: Concepts, Storage, and Traversal (DFS & BFS)
DataFunTalk
DataFunTalk
Apr 4, 2021 · Fundamentals

Open the Lock Problem – BFS Solution in Java

Given a four‑wheel combination lock with digits 0‑9, the task is to find the minimum number of rotations needed to reach a target combination while avoiding a list of dead‑end states, using a breadth‑first search algorithm illustrated with Java code examples.

AlgorithmBFSGraph Search
0 likes · 7 min read
Open the Lock Problem – BFS Solution in Java