You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
miguel 9d80904eed implementing the main.go files at the same level as the readme for the exercise 11 months ago
..
README.md Remove relative imports (no longer works with modules) and remove invalid character (" ") 3 years ago
main.go implementing the main.go files at the same level as the readme for the exercise 11 months ago

README.md

btreedeletenode

Instructions

Write a function, BTreeDeleteNode, that deletes node from the tree given by root.

The resulting tree should still follow the binary search tree rules.

Expected function

func BTreeDeleteNode(root, node *TreeNode) *TreeNode {

}

Usage

Here is a possible program to test your function :

package main

import (
	"fmt"
	"piscine"
)

func main() {
	root := &piscine.TreeNode{Data: "4"}
	piscine.BTreeInsertData(root, "1")
	piscine.BTreeInsertData(root, "7")
	piscine.BTreeInsertData(root, "5")
	node := piscine.BTreeSearchItem(root, "4")
	fmt.Println("Before delete:")
	piscine.BTreeApplyInorder(root, fmt.Println)
	root = piscine.BTreeDeleteNode(root, node)
	fmt.Println("After delete:")
	piscine.BTreeApplyInorder(root, fmt.Println)
}

And its output :

$ go run .
Before delete:
1
4
5
7
After delete:
1
5
7
$