Learn | Record

Eryn Meng's blog | 边走边看 边看边学 边学边练

CNN Deep Learning Notes

卷积神经网络学习笔记

Covolutinal Neural Network 数据量降维 有效保留图片特征,有效表示出spatial structure Before CNN, problem of applying Fully NN to Image Data: Too many parameters require a lot of data Does not capture the s...

Learning Git

Git 学习笔记

参考自廖雪峰老师博客教程 和 阮一峰老师网络日志 分支管理 查看分支git branch 创建分支git branch <name> 切换分支git checkout <name>,git switch <name> 创建+切换分支git checkout -b <name>, git switch -c <name...

Leetcode Basic Problems Checklist

基础编程题总结

### CheckList 所有要背诵的模板: LRU LFU quicksort mergesort binary search merge K sorted list Add 2 numbers number of islands combination sum permutations subsets Pre-order tree tr...

Cyber Security - Information Security

网络安全基础知识 - 信息安全

Information of value secret info processed info gathered info (big data) information vs property rivalrous property: one person’s use precludes another’s. If i drink the milk, you ca...

Two-Pointers Problems

双指针题型总结

Two References 同向指针 两个指针从头到尾或从尾到头遍历 第一个指针用于遍历 第二个指针在满足一定掉条件移动 sliding window Problems 1. 283 Move Zeroes (easy) Given an array nums, write a function to move all 0’s to the end of it while maint...

Bitwise Operators

位运算笔记

Bitwise Operators used to perform manipulation of individual bits of a number can be used with any of the integral types (char, short, int, etc). used when performing update and query operations...

Vocabulary in Coding Problems

编程题目中的生词

ermutation 排列 lexicographically order 词典编纂的顺序

Back Tracking & DFS

回溯法总结

BackTracking 弱点:找不准dfs return的条件 class Solution { /** * @param S: A set of numbers. * @return: A list of lists. All valid subsets. */ public ArrayList<ArrayList<Intege...

Leetcode 242 Valid Anagram

力扣242笔记:有效的字母异位词

作为hash table的方法之一,什么是ASCII? 为什么 int[] hashtable = new int[128]/[256] then hashtable[某些char 242. Valid Anagram Given two strings s and t , write a function to determine if t is an anagram of s app...

Leedcode Top 100

力扣常见100题

Questions: sliding window & hashtable Commonly used tables are: int[26] for Letters ‘a’ - ‘z’ or ‘A’ - ‘Z’ int[128] for ASCII int[256] for Extended ASCII p...