ExpStuff.com

ExpStuff.com

Computer Science Stuff | Techie QA | Data Structure | Algorithm

Inorder Traversal of the Binary tree in Golang - ExpStuff | Technical QA | JS | PHP | GoLang | Data Structure | Computer Science 28/06/2020

Inorder Traversal of the Binary tree in Golang - ExpStuff | Technical QA | JS | PHP | GoLang | Data Structure | Computer Science Inorder Traversal of the Binary tree in golang In trees, we have many different types of traversal possible. Inorder Traversal is one of them

Level Order Tree Traversal - ExpStuff | Technical QA | JS | PHP | GoLang | Data Structure | Computer Science 28/06/2020

Level Order Tree Traversal in a simplified way.

Level Order Tree Traversal - ExpStuff | Technical QA | JS | PHP | GoLang | Data Structure | Computer Science In this post, we will learn about the level order traversal of the binary tree.Here, we will do the breadth first traversal of the binary tree.

Wave array from distinct sorted array - Expstuff.com | Algorithm 10/05/2020

Wave array from distinct sorted array - Expstuff.com | Algorithm int arr[] = {1, 2, 3, 4, 5, 6, 7, 8};Wave format sorted array would be: {2, 1, 4, 3, 6, 5, 8, 7}. swap all the even index value with (even index + 1) value.

Kth bit checker in a given number 09/05/2020

Kth bit checker in a given number We can check bit value using the left shift(