C++ 日志系统 cclog
- 授权协议: MIT
- 开发语言: C/C++
- 操作系统: 跨平台
- 软件首页: https://github.com/ccalvin/cclog
- 软件文档: https://github.com/ccalvin/cclog
软件介绍
cclog 是简单的 C++ 日志系统,segmentation fault 等异常情况可以打印出函数调用栈信息。
API:
// @argv0 argv[0] or any valid string for a file name. void init_cclog(const std::string& argv0); // write all buffered logs to destination and stop the logging thread. void StopLogging();
简单示例:
LOG << "hello" << ' ' << "world"; LOG_IF(1 + 1 == 2) << "1 + 1 = 2"; ELOG << L"hello again"; CHECK_EQ(1, 2) << "1 != 2";
数据结构与算法:Python语言描述
裘宗燕 / 机械工业出版社 / 2016-1 / CNY 45.00
本书基于Python语言介绍了数据结构与算法的基本知识,主要内容包括抽象数据类型和Python面向对象程序设计、线性表、字符串、栈和队列、二叉树和树、集合、排序以及算法的基本知识。本书延续问题求解的思路,从解决问题的目标来组织教学内容,注重理论与实践的并用。一起来看看 《数据结构与算法:Python语言描述》 这本书的介绍吧!
