Giter VIP home page Giter VIP logo

js's Introduction

js

Javascript stuff

list_interserction.js : Find the intersection of N ordered lists of M integer elements

dice.js : Generate dice total frequency table using a naive permutation approach and one using linear memory

bloom_filter : Bloom filter in Javascript using a character backed array as bitset (since ints don't exist) and custom hashing function generation for string hashing.

binarySearch : Implemented a binary search for numbers to find out what the many subtle bugs are. Uses an iterative span+midpoint approach and not the usual recursive with Left and Right indices one.

mergeSort : Implemented mergesort to find out all the ways that can go wrong.

fibonacci : Function that computes fibonacci(n) in sublinear time

BinaryTree : A binary tree class that supports balancing, intersection and comparison (both values and structure) Also: implementation of the Day-Stout-Warren algorithm for balancing the tree Run: jsc -e 'load("BinaryTree.js"); var t = treeFromList( shuffle( range(1,8)) ); t = t.balance_DSW(true);' | dot -Tpng -otree_balancing_DWS.png On the command line to get a nice graph of all the steps of the algorithm if you have GraphViz installed

wordhopping.js : From a colleague's interview question: Given a dictionary of words, find the longest chain of words a[0] .. a[n] for which the edit distance between a[i], a[i+] is 1.

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.