EduLearn - Online Education Platform

Welcome to EduLearn!

Start learning today with our wide range of courses taught by industry experts. Gain new skills, advance your career, or explore new interests.

Browse Courses

BFS(Breadth First search)

 

–>also called as level order traversal(where you can visit nodes level by level from top to bottom and left to right)

 

class Node

{

int key;

Node left,right;

 

Node(int item)//item=1

{

key=item;

left=right=null;

}

}

class Breadth

{

Node root;

 

public void bfstraversal(Node root)

{

if(root==null)

return;

 

Queue<Node> queue=new LinkedList<>();

 

queue.add(root);

 

while(!queue.isEmpty())

{

Node current=queue.poll();//remove the front element

 

System.out.println(current.key+” “);

 

if(current.left !=null) queue.add(current.left);

 

if(current.right !=null) queue.add(current.right);

}

}

public static void main(String args[])

{

Breadth tree=new Breadth();

 

tree.root=new Node(1);

 

tree.root.left=new Node(2);

 

tree.root.right=new Node(3);

 

tree.root.left.left=new Node(4);

 

tree.root.left.right=new Node(5);

 

tree.root.right.right=new Node(6);

 

tree.bfstraversal(tree.node);

}

}

Java data structures Breadth first search

Leave a Reply

Your email address will not be published. Required fields are marked *

EduLearn - Online Education Platform

Welcome to EduLearn!

Start learning today with our wide range of courses taught by industry experts. Gain new skills, advance your career, or explore new interests.

Browse Courses

Popular Courses

[Course Image]

Introduction to Programming

Learn the fundamentals of programming with Python in this beginner-friendly course.

12 Hours Beginner
[Course Image]

Data Science Essentials

Master the basics of data analysis, visualization, and machine learning.

20 Hours Intermediate
[Course Image]

Web Development Bootcamp

Build modern websites with HTML, CSS, JavaScript and popular frameworks.

30 Hours Beginner
[Course Image]

Digital Marketing Fundamentals

Learn SEO, social media marketing, email campaigns and analytics.

15 Hours Beginner
Educational Website Footer