Skip to content

Method1 (Older) Tree Transitions

Rakesh Kumar T edited this page Jun 4, 2020 · 1 revision

Below given is the internal transitions of Radix Tree for every addition on IP's.

  • Steps 5 to 1 will be the transitions when we remove the IP's

Node Strucure:

class Node:
    data = None            [Type: String]
    children = [None]*2    [Type: List<Node>]

Clone this wiki locally