MCPcopy Create free account
hub / github.com/Ayush7614/Daily-Coding-DS-ALGO-Practice / Node

Method Node

Gfg/Java/Huffman Encoding.java:68–74  ·  view source on GitHub ↗
(String name,int freq,Node left,Node right)

Source from the content-addressed store, hash-verified

66 Node right;
67
68 Node(String name,int freq,Node left,Node right)
69 {
70 this.name=name;
71 this.freq=freq;
72 this.left=left;
73 this.right=right;
74 }
75 }
76}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected