Giter Club home page Giter Club logo

design-1's Introduction

design-1's People

Contributors

jaspindersingh83 avatar neha79091 avatar sehaj-grover avatar super30admin avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

design-1's Issues

Design hashset python

'''
Method to Implement Hashset
'''

class MyHashSet:

def __init__(self):
    self.keyRange = 769
    self.bucketArray = [Bucket() for i in range(self.keyRange)]

def _hash(self, key):
    return key%self.keyRange

def add(self,key):
    bucketindex = self._hash(key)
    self.bucketArray[bucketindex].insert(key)

def remove(self, key):
    bucketindex = self._hash(key)
    self.bucketArray[bucketindex].delete(key)

def contains(self,key):
    bucketIndex = self._hash(key)
    self.bucketArray[bucketIndex].exists(key)

class Node:

def __init__(self, val, nextnode=None):
    self.val = val
    self.nextnode = nextnode

class Bucket:

def __init__(self):
    self.head = Node(0)

def add(self, newValue):
    if not self.exists(newValue):
        newNode = Node(newValue, self.head.next)
    self.head.next = newNode

def delete(self, val):
    prev = self.head
    curr = self.head.next
    while curr:
        if curr.val==val:
            prev.nextnode = curr.nextnode
            return
        prev = curr
        curr = curr.nextnode

def exists(self,val):
    curr = self.head.nextnode
    while curr:
        if curr.val==val:
            return True
        curr = curr.nextnode
    return False

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.