Lance

VS Code Settings Synchronization

Key Features Use your GitHub account token and Gist. Easy to Upload and Download on one click. Show a summary page at the end with details about config and extensions effected. Auto downl...

Tree Traversal

Pre-order root -> left -> right # recursive solution # Definition for a binary tree node. # class TreeNode: # def __init__(self, x): # self.val = x # self.left = None #...

Recommender Systems

Introduction Recommeder Systems (RS), is part of Artificial Intelligence. This figure shows relationships between them.Ref Reference 推荐系统(Recommendation system )介绍 自己动手写一个推荐系统 推荐系统干货总...

大话数据结构

Chapter 7

Content Reference 大话数据结构

大话数据结构

Chapter 6

Content Reference 大话数据结构

大话数据结构

Chapter 5

Content Reference 大话数据结构

IP notes

This is a note about calculation in IP part of Computer Networking. Some items need to be clarified as follows: net id broadcasting addr IP addr range can be allocated maximum n...

大话数据结构

Chapter 4

Content Reference 大话数据结构

Data Structures

Introduction This is Data Structures tutorial from YouTube. I will learn it step by step. Content Course list Introduction to data structures Data Structures: List as abstract data type Intr...

大话数据结构

Chapter 3

Content This is a C++ string class demo, I think it is helpful to understand list. class String // string is made up of an array of characters { private: char* m_Buffer; // point to the buffer ...