D
Dicread
হোমঅভিধানBbreadth first search

লক্ষ্য করুন: এই এন্ট্রির অনুবাদ বর্তমানে মান পর্যালোচনার অধীনে রয়েছে, তাই কিছু বিষয়বস্তু সাময়িকভাবে শুধুমাত্র ইংরেজিতে প্রদর্শিত হচ্ছে।

এই এন্ট্রিটি এখনও আপনার ভাষায় অনুবাদ করা হয়নি, তাই নিচে মূল লেখাটি দেখানো হচ্ছে।

breadth first search

breadth first search
Noun
pl: breadth first searches

This term is a technical specification used primarily in computer science and discrete mathematics. It describes a specific strategy for graph traversal where the search expands uniformly across the breadth of the structure, ensuring that all nodes at a given distance from the origin are visited before moving deeper. This distinguishes it from depth first search, which prioritizes exploring a single branch to its conclusion before backtracking.

In practical application, this algorithm is the standard approach for finding the shortest path in an unweighted graph. Because it explores all immediate neighbors first, the first time it encounters a target node, it is guaranteed to have found the path with the minimum number of edges.

Meanings

Nounbreadth first search

An algorithm for traversing or searching tree or graph data structures that starts at the root node and explores all neighboring nodes at the present depth prior to moving on to the nodes at the next depth level.

Related Words

সর্বশেষ আপডেট: May 2026একটি ত্রুটি রিপোর্ট করুন