Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create Tree_Postorder_Traversal.kt #2699

Merged
merged 8 commits into from
May 30, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions Tree_Postorder_Traversal/Tree_Postorder_Traversal.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
import java.util.*
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

keep a line space after this

class Node<Int>(
var key:Int,
var left:Node<Int>? = null,
var right:Node<Int>? = null
)
{
fun postorderTraversal()
{
left?.postorderTraversal()
right?.postorderTraversal()
print("$key ")
}
}

fun main() {
var read = Scanner(System.`in`)
println("Enter the size of Array:")
val arrSize = read.nextLine().toInt()
var arr = IntArray(arrSize)
val nodes = mutableListOf<Node<Int>>()
println("Enter the array respresentaion of binary tree")
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

keep a line space after this

for(i in 0 until arrSize)
{
arr[i] = read.nextLine().toInt()
nodes.add(Node(arr[i]))
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

keep a line space after this

for(i in 0..arrSize-2)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please keep space around operator

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you please check now? I will squash it from next time

{
if((i*2)+1<arrSize && arr[(i*2)+1]!=-1)
nodes[i].left = nodes[(i*2)+1]
if((i*2)+2<arrSize && arr[(i*2)+2]!=-1)
nodes[i].right = nodes[(i*2)+2]
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

keep space around operators

}
print("Post Order traversal of tree is ")
nodes[0].postorderTraversal()
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

keep a line space after this

/*
*Enter the size of Array:
*7
*Enter the array respresentaion of binary tree
*1
*2
*3
*4
*5
*6
*-1
*Post Order traversal of tree is 4 5 2 6 3 1
*/