leetcode中的一些算法题解:Contest.h , Function.h.
剑指Offer:名企面试官精讲典型编程题Nowcoder
/complex : 复数类
/Fraction : 分数类
/String : 字符串类
/share_ptr : 智能指针类。
/mathOperator :数学运算符类
addition(+), substrction(-), absValue(||), oppValue(-), multiplication(*) and division(/).
/md_5 : md_5算法
/MySort :排序算法
BubbleSort, SelectionSort, InsertionSort, ShellSort, MergeSort, QuickSort and HeapSort.
/stringMatch:字符串匹配算法
brute_forces,KMP,BM,Karp-Rabin
/stringFunction: 常见c字符算法
strlen, strcpy, strncpy, strcat, strncat, strcmp, memset, memcpy, memmove.