{"id":15655427,"url":"https://github.com/amazingandyyy/algor-in-js","last_synced_at":"2025-05-05T14:41:39.468Z","repository":{"id":64143252,"uuid":"102560470","full_name":"amazingandyyy/algor-in-js","owner":"amazingandyyy","description":"Various Basic Data Structures and Algorithms Implement in Javascript","archived":false,"fork":false,"pushed_at":"2018-03-23T18:04:18.000Z","size":21,"stargazers_count":24,"open_issues_count":0,"forks_count":6,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-25T11:02:39.880Z","etag":null,"topics":["computer-science","data-structures","javascript","nodejs","tutorials"],"latest_commit_sha":null,"homepage":"https://www.amazingandyyy.com/algor-in-js","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/amazingandyyy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-09-06T03:54:28.000Z","updated_at":"2023-02-06T17:13:26.000Z","dependencies_parsed_at":"2022-12-07T11:18:43.694Z","dependency_job_id":null,"html_url":"https://github.com/amazingandyyy/algor-in-js","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amazingandyyy%2Falgor-in-js","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amazingandyyy%2Falgor-in-js/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amazingandyyy%2Falgor-in-js/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amazingandyyy%2Falgor-in-js/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/amazingandyyy","download_url":"https://codeload.github.com/amazingandyyy/algor-in-js/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252516106,"owners_count":21760725,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["computer-science","data-structures","javascript","nodejs","tutorials"],"created_at":"2024-10-03T12:59:10.990Z","updated_at":"2025-05-05T14:41:39.448Z","avatar_url":"https://github.com/amazingandyyy.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Algorithms in Javascript\n\nWrite basic data structure and algorithms in javascript, my favorite language without a doubt.\n\n## Why JS\n\nWhen it comes to the data structure, people first think about python or Java which I personally don’t think they are the choice. Javascript itself is a more beautiful, flexible and friendly language in the following reason:\n\n- Runs everywhere, thanks to node\n- Curly braces are the best, to have clear code blocks and scope\n- Event-driven makes projects written in JS more accessible and fun\n- Weak type makes more intuitive (well... I still love golang)\n- A better OOP class (over than python's underscores)\n- The best testing cycle\n\n## Topics\n\n- 01 [Linked List](https://github.com/amazingandyyy/algorithms-in-js/blob/master/01-linked-list.js)\n- 02 [Recursion](https://github.com/amazingandyyy/algorithms-in-js/blob/master/02-recursion.js)\n- 03 [Binary Search Tree](https://github.com/amazingandyyy/algorithms-in-js/blob/master/03-binary-search-tree.js)\n- 04 [Hash Table](https://github.com/amazingandyyy/algorithms-in-js/blob/master/04-hash-table.js)\n- 05 [Fizz Buzz](https://github.com/amazingandyyy/algorithms-in-js/blob/master/05-fizz-buzz.js)\n- 06 [Harmless Ransom Note](https://github.com/amazingandyyy/algorithms-in-js/blob/master/06-harmless-ransom-note.js)\n- 07 [Palindrome](https://github.com/amazingandyyy/algorithms-in-js/blob/master/07-palindrome.js)\n- 08 [Caesar Cipher](https://github.com/amazingandyyy/algorithms-in-js/blob/master/08-caesar-cipher.js)\n- 09 [Reverse Words](https://github.com/amazingandyyy/algorithms-in-js/blob/master/09-reverse-words.js)\n- 10 [Reverse Array In Place](https://github.com/amazingandyyy/algorithms-in-js/blob/master/10-reverse-array-in-place.js)\n- 11 [Mean Median Mode](https://github.com/amazingandyyy/algorithms-in-js/blob/master/11-mean-median-mode.js)\n- 12 [Two Sum](https://github.com/amazingandyyy/algorithms-in-js/blob/master/12-two-sum.js)\n- 13 [Binary Search](https://github.com/amazingandyyy/algorithms-in-js/blob/master/13-binary-search.js)\n- 14 [Fibonacci](https://github.com/amazingandyyy/algorithms-in-js/blob/master/14-fibonacci.js)\n- 15 [Memoized Fibonacci](https://github.com/amazingandyyy/algorithms-in-js/blob/master/15-memoized-fibonacci.js)\n- 16 [Sieve Of Eratosthenes](https://github.com/amazingandyyy/algorithms-in-js/blob/master/16-sieve-of-eratosthenes.js)\n- 17 [Bubble Sort](https://github.com/amazingandyyy/algorithms-in-js/blob/master/17-bubble-sort.js)\n- 18 [Merge Sort](https://github.com/amazingandyyy/algorithms-in-js/blob/master/18-merge-sort.js)\n- 19 [Max Stock Profit](https://github.com/amazingandyyy/algorithms-in-js/blob/master/19-max-stock-profit.js)\n\n\n## Resources\n\n- [x] **Learning Algorithms in Javascript from Scratch** by Eric Traub on [udemy](https://www.udemy.com/learning-algorithms-in-javascript-from-scratch)\n- [x] **Learning Data Structures in Javascript from Scratch** by Eric Traub on [udemy](https://www.udemy.com/learning-data-structures-in-javascript-from-scratch/)\n- [ ] **The Coding Interview Bootcamp: Algorithms + Data Structures** by Stephen Grider on [udemy](https://www.udemy.com/coding-interview-bootcamp-algorithms-and-data-structure/learn/v4/)\n- [ ] **Welcome to Data Structure and Algorithms Analysis - Job Interview** by Hussein Al Rubaye on [udemy](https://www.udemy.com/data-structure-and-algorithms-analysis/learn/v4/overview)\n- [ ] **C Language + Algorithms + Data Structures = Power** by Nidhal Abidi on [udemy](https://www.udemy.com/clang-algo-ds/learn/v4/overview)\n- [ ] **Easy to Advanced Data Structures** by William Fiset on [udemy](https://www.udemy.com/introduction-to-data-structures/learn/v4/overview)\n- [x] **10 Common Data Structures Explained with Videos + Exercises** by Beau Carnes on [medium](https://medium.freecodecamp.org/10-common-data-structures-explained-with-videos-exercises-aaff6c06fb2b)\n\n## Author\n\nAndy Chen ([amazingandyyy](https://github.com/amazingandyyy))\n\n## LICENSE\n\n[MIT](https://github.com/amazingandyyy/algorithms-in-js/blob/master/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famazingandyyy%2Falgor-in-js","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Famazingandyyy%2Falgor-in-js","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famazingandyyy%2Falgor-in-js/lists"}