c++开发学习
j380587868
vc程序员 09年广西民族大学毕业于软件工程专业
展开
-
c++括号配对实现
左括号要与右括号配对,如:“()”,“()()”,“((()()))”等,c++实现: // ConsoleApplication4.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。 // #include <iostream> #include <string.h> using namespace std; string left(int num) { string str; for (int i = 0; i < num; i++)原创 2021-12-26 09:58:55 · 690 阅读 · 0 评论 -
路由最佳路径选择
有N个路由器,路由A到路由B的延迟是time, 可以表示为 {A->B,time},不联通的路由延迟用-1表示,设计一个算法,求连个路由最小延迟的路径。原创 2021-06-12 15:06:47 · 731 阅读 · 0 评论 -
c++位运算
位逻辑运算符 #include <stdio.h> #define _CRT_SECURE_NO_DEPRECATE #pragma warning(disable:4996) #include <iostream> #include <string> #include <bitset> #include <exception> #include <stdexcept> using namespace std; int main()原创 2020-12-20 15:03:31 · 88 阅读 · 0 评论 -
c++ 开发学习
c++学习: https://zh.cppreference.com/w/cpp https://www.learncpp.com http://www.cplusplus.com http://c.biancheng.net c++框架: https://blog.csdn.net/xiaoxiaoyeyaya/article/details/42541419 MFC开发: https://docs.microsoft.com/zh-cn/cpp/mfc/reference/cobject原创 2020-11-30 20:37:03 · 83 阅读 · 0 评论