
C++
zhang35
zhangjqfriend@gmail.com
展开
-
PAT甲级真题 1099 Build A Binary Search Tree (30分) C++实现 (二叉搜索树BST inorder中序遍历得到有序数列)
题目A Binary Search Tree (BST) is recursively defined as a binary tree which has the following properties:The left subtree of a node contains only nodes with keys less than the node’s key.The right subtree of a node contains only nodes with keys greater原创 2020-07-27 17:12:16 · 359 阅读 · 0 评论 -
Mac下Xcode通过MySQL Connector/C++ 8.0连接MySQL详细环境搭建历程
问题描述为了使mac下Xcode建立的c++项目能操作mysql数据库,找遍了国内国外各种教程,踩坑无数,终于摸索出了环境搭建的方法。心得是,官方文档永远是最好的教程:5.1 Building Connector/C++ Applications: General Considerations5.2.2 macOS Notes当然其它各类博客、Stack Overflow上的帖子也或多或少提供了些线索,但无一例外都是不全面的!摸索了整整半天,吐血探索出来的完整环境搭建步骤整理如下。如果不在意原原创 2020-06-19 14:30:26 · 2408 阅读 · 1 评论 -
C++ extern定义多文件共享全局变量
思路参考知乎提问“在C++中如何使用全局变量?”下面杨个毛的回答:我觉得题主需要的回答是“把变量定义在函数外面”,比如这样:#include <iostream>#include <string>std::string msg; //这个就叫全局变量int main(){ msg = "Hello, world!"; std::cout << msg << std::endl; return 0;}不过呢,这么做以后原创 2020-06-14 19:04:52 · 2225 阅读 · 0 评论