Cmu15445_2021fall

Lecture 01 Proj 0 完成矩阵计算。 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 Matrix(int rows, int cols) : rows_(rows), cols_(cols), linear_{new T[rows * cols]} {} RowMatrix(int rows, int cols) : Matrix<T>(rows, cols)

Git_internals

本文是阅读Pro Git第十章–Git internals做的一些文字总结。试图讲清楚Git底层是如何做到如此功能的。

C/C++_refs

本文主要是阅读c/cpp ref后写点记录。暂时先占个位置,想起来了就写。 C ref Cpp ref

C++_tips

本篇文章主要是对阅读 google c++ tips 后进行的盲目记录与总结。 tips 1: string_view 将字符串传进函数,一般按如下方式。 1 2 3 4 5 6 // C Convention void TakesCharStar(const char* s); // Old Standard C++ convention void TakesString(const std::string& s); // string_view C++