Skip to main content
Module

x/datastructure/hashTable/hashNode.ts

Implement different Data Structures using TypeScript. Deno Third-party Module.
Latest
File
import { NodeType, DataType } from "./helper.d.ts";
export class HashNode { public data: DataType<any> public next: NodeType|null
constructor(data: DataType<any>) { this.data = data; this.next = null; }}