CS_Offer icon indicating copy to clipboard operation
CS_Offer copied to clipboard

计算机学科基础知识和主流编程语言相关内容的总结

Results 13 CS_Offer issues
Sort by recently updated
recently updated
newest added

Added a new resource - Function overloading in Python, this will let users know more about the methods and functions overloading in Python that will be required after learning classes...

多层继承下感觉坑不少 尤其涉及虚函数时 构造和析构可以挖坑

[B 树](https://github.com/xuelangZF/CS_Offer/blob/master/DataStructure/B_Tree.md) 缺少详细内容

Enhancement

socket.listen(backlog) ~~指定同时能处理的最大连接要求,通常为10或者5。最大值可设至128~~。 这里需要完善说明,添加 Socket_Listen.md 进行补充说明。

Lack

CS_Offer/Coding/C++_Smart_Pointer.cpp 第78行并不会调用赋值运算符,而是调用拷贝构造函数 如果要调用复制运算符,可以改成 ``` SmartPtr smpt3(new Cons(3, 4)); smpt3 = smpt1; ```

建议关于 C++ 的内存管理更多的说明 RAII,而不是 new delete

https://github.com/xuelangZF/CS_Offer/tree/master/Network 文末,TCP 与 UDP 的区别这一链接失效

Python 整个运行机制介绍

Lack

[ShadowSocks ](https://github.com/xuelangZF/CS_Offer/blob/master/Network/ShadowSocks.md) 是个不错的东西,希望能够完善相关介绍

Enhancement

python 单元测试部分需要完善。 可以加入示例,和 Mock 测试 [Test](https://github.com/xuelangZF/CS_Offer/blob/master/Python/Test.md)

Enhancement