BlockLune's Blog

Home Tags About

Posts with tag note

Notes for Algorithms, Part II: Shortest Paths

2024-02-10
algorithmcourseranoteshortest paths

This is a note for 4.4 Shortest Paths, _[Algorithms, Part II](https://www.coursera.org/learn/algorithms-part2/)_.

Note for Intro to Machine Learning

2023-11-12
aikagglemlnote

This is a note for the course on Kaggle: _[Intro to Machine Learning](https://www.kaggle.com/learn/intro-to-machine-learning)_.

Notes for Machine Learning Specialization: More numerically accurate code examples

2023-08-14
aicourseramlmachine learning specializationnotepythontensorflow

This is a note for the [Machine Learning Specialization](https://www.coursera.org/specializations/machine-learning-introduction).

Notes for Machine Learning Specialization: Vectorization

2023-08-09
aicourseramlmachine learning specializationnotenumpypythonvectorization

This is a note for the [Machine Learning Specialization](https://www.coursera.org/specializations/machine-learning-introduction).

Notes for Algorithms, Part II: Minimum Spanning Trees

2023-08-03
algorithmcourseraminimum spanning treesnote

This is a note for 4.3 Minimum Spanning Trees, _[Algorithms, Part II](https://www.coursera.org/learn/algorithms-part2/)_.

Notes for Algorithms, Part II: Directed Graphs

2023-07-29
algorithmbfscourseradfsdirected graphnotestrong componentstopological sort

This is a note for 4.2 Directed Graphs, _[Algorithms, Part II](https://www.coursera.org/learn/algorithms-part2/)_.

Notes for Algorithms, Part II: Undirected Graphs

2023-07-27
algorithmbfsconnected componentcourseradfseuler cycleeuler tournoteundirected graph

This is a note for 4.1 Undirected Graphs, _[Algorithms, Part II](https://www.coursera.org/learn/algorithms-part2/)_.

Notes for Nand2Tetris: Virtual Machine I: Stack Arithmetic

2023-07-19
courseranand2tetrisvirtual machinestack arithmeticnote

This is a note for Nand2Tetris unit 7 (Part II, Unit 1).

Notes for Nand2Tetris: Assembler

2023-07-17
courseranand2tetrisassemblerassembly languagenote

This is a note for Nand2Tetris Unit 6.

Notes for Machine Learning

2023-07-14
aiandrew ngmlnote

Here are my notes for course [Machine Learning](https://study.163.com/course/courseMain.htm?courseId=1210076550) taught by Andrew Ng. About exercise: I didn't do the original version exercise which depends on Octave or Matlab, but a third-party Python version (See [nsoojin/coursera-ml-py](https://github.com/nsoojin/coursera-ml-py)).

Notes for Nand2Tetris: Computer Architecture

2023-07-12
courseranand2tetriscomputer architecturefetch-execute cycledate businstruction buscpucomputer designnote

This is a note for Nand2Tetris Unit 5.

Notes for Nand2Tetris: Machine Language

2023-07-11
courseranand2tetrisassembly languagemachine languagenote

This is a note for Nand2Tetris unit 4.

Notes for Nand2Tetris: Memory

2023-07-09
courseranand2tetrismemoryramregistercountersequential logicdffnote

This is a note for Nand2Tetris unit 3.

Notes for Nand2Tetris: Boolean Arithmetic and the ALU

2023-07-08
courseranand2tetrisboolean arithmeticalunote

This is a note for Nand2Tetris Unit 2.

Notes for Nand2Tetris: Boolean Functions and Gate Logic

2023-07-08
nand2tetrisboolean functionsgate logicnote

This is a note for Nand2Tetris Unit 1.

Const Correctness in C++

2023-06-01
c & c++constcs106lnote

This is a note for Lecture 8, [CS106L](https://web.stanford.edu/class/cs106l/index.html), Spring 2023.

Type Safety and std::optional in C++

2023-05-31
c & c++cs106lnote

This is a note for Lecture 14, [CS106L](https://web.stanford.edu/class/cs106l/index.html), Spring 2023.

Move Semantics in C++

2023-05-30
cs106lc & c++note

This is a note for Lecture 13, [CS106L](https://web.stanford.edu/class/cs106l/index.html), Spring 2023.

初探深度优先搜索(DFS)和广度优先搜索(BFS)

2022-11-22
algorithmbfsdfsnotesearching

**深度优先搜索**(DFS,Depth First Search)和**广度优先搜索**(BFS,Breadth First Search),我从来没弄明白过。是时候努力去好好理解一下了。