Data Adventurer


  • Home

  • About

  • Categories

  • Archives

Intro to Bloom Filter

Posted on 2018-05-03 | In learning_notes , algorithm |
Implementation12345678910111213141516171819202122232425262728293031import ioimport hashlibHASH_ALGORITHMS_NAMES = ['sha1', 'sha224', 'sha384', 'sha256 ...
Read more »

Tree & Graph Structure and Algorithms

Posted on 2018-04-22 | In Interview_Prep , algorithm |
Binary Search TreePreorder Traversal12345678910111213def preorderTraversal(self, root): res = [] if root == None: return res stack = [ ...
Read more »

Backtracking & Dynamic Programming & Greedy

Posted on 2018-04-22 | In Interview_Prep , algorithm |
GreedyBacktrackingpermutationRecursive Implementation12345678910111213141516171819202122232425262728def permute(nums): """ :type nums: List[int] ...
Read more »

Popular NLP Algorithms

Posted on 2018-04-19 | In Interview_Prep , machine_learning |
For Chunking, Named Entity Extraction, POS Tagging:- CRF++, HMMCRF Feature Functions in a CRFIn a CRF, each feature function is a function that takes ...
Read more »

Linear Structures - Overview

Posted on 2018-04-14 | In Interview_Prep , algorithm |
List/Array Max/Min subarray prefix sum array: pre calculate the sum track the current sum and max sum (min product and max product) + greedy two point ...
Read more »

Bit Manipulation Tricks

Posted on 2018-04-13 | In Interview_Prep , algorithm |
Summary操作符 功能 用法~ 位求反 ~var<< 左移(乘法) var << position 右移(除法) var >> position & 位与 ...
Read more »

Intro to Ether programming

Posted on 2017-10-31 | In learning_notes , blockchain |
合约方法 12345678910111213progma solidity ^0.4.0;contract SimpleStorage{ uint storedData; function set(uint x){ storedData = x; } fu ...
Read more »

Quick tour in Redis

Posted on 2017-08-07 | In learning_notes , system |
OverviewRedis is what is called a key-value store, often referred to as a NoSQL database. The essence of a key-value store is the ability to store som ...
Read more »

When We Talk about Network Protocols

Posted on 2017-07-14 | In learning_notes , network |
What is TCP/IP & UDP?IP, TCP, and UDP are all network communications protocols. A protocol is nothing more than a system of procedures or regulati ...
Read more »

Scala Notes - Functional Programming Principles in Scala

Posted on 2017-06-04 | In learning_notes , scala |
This is my personal notes for Functional Programming Principles in Scala at Coursera, which is considered one of the most popular introduction course ...
Read more »
1234
Jeff Sang

Jeff Sang

34 posts
19 categories
10 tags
GitHub
© 2019 Jeff Sang
Powered by Hexo
|
Theme — NexT.Pisces v5.1.4