Skip to content

Instantly share code, notes, and snippets.

View AymanAtallahAhmed's full-sized avatar

Ayman AymanAtallahAhmed

  • _VOIS
  • Cairo
View GitHub Profile
class Node {
var key: Int
var value: Int
var freq: Int
var next: Node?
var prev: Node?
init(key: Int, value: Int) {
self.key = key
self.value = value