-
-
Save D-sense/3b0dde528736cc33fb2b7aee59700229 to your computer and use it in GitHub Desktop.
Depth and Breadth-first traversal in a binary tree, implemented in Golang
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import "fmt" | |
type node struct { | |
value string | |
left *node | |
right *node | |
} | |
func insert(n *node, v string) *node { | |
if n == nil { | |
return &node{v, nil, nil} | |
} else if v <= n.value { | |
n.left = insert(n.left, v) | |
} else { | |
n.right = insert(n.right, v) | |
} | |
return n | |
} | |
/* pre-oder DFS traversal */ | |
func preorder(n *node) { | |
if n != nil { | |
fmt.Printf(n.value + " ") | |
preorder(n.left) | |
preorder(n.right) | |
} | |
} | |
/* in-oder DFS traversal */ | |
func inorder(n *node) { | |
if n != nil { | |
inorder(n.left) | |
fmt.Printf(n.value + " ") | |
inorder(n.right) | |
} | |
} | |
/* post-oder DFS traversal */ | |
func postorder(n *node) { | |
if n != nil { | |
postorder(n.left) | |
postorder(n.right) | |
fmt.Printf(n.value + " ") | |
} | |
} | |
/* breadth first traversal */ | |
func breadth(n *node) { | |
if n != nil { | |
s := []*node{n} | |
for len(s) > 0 { | |
current_node := s[0] | |
fmt.Printf(current_node.value + " ") | |
s = s[1:] | |
if current_node.left != nil { | |
s = append(s, current_node.left) | |
} | |
if current_node.right != nil { | |
s = append(s, current_node.right) | |
} | |
} | |
} | |
} | |
func main() { | |
var root *node | |
root = insert(root, "F") | |
root = insert(root, "D") | |
root = insert(root, "H") | |
root = insert(root, "B") | |
root = insert(root, "E") | |
root = insert(root, "G") | |
root = insert(root, "J") | |
fmt.Println("Pre-order DFS traversal") | |
preorder(root) | |
fmt.Println("\nIn-order DFS traversal") | |
inorder(root) | |
fmt.Println("\nPost-order DFS traversal") | |
postorder(root) | |
fmt.Println("\nBFS traversal") | |
breadth(root) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment