会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
®Geovin Du Dream Park™
why we only heard about haves and have-nots, but we did'nt heard about doers and doer-nots. 人生是一种心境,生活是一种艺术,成功是一种心态,幸福是一种感觉,竞争是一种建构,情感是一种容合.学习是一种成长.
博客园
首页
新随笔
联系
管理
订阅
随笔分类 -
Cpp programming
上一页
1
2
3
4
5
下一页
CPlusPlus programming language
cpp: Sorting Algorithms
摘要:Programming in C++ (mheducation.com) https://highered.mheducation.com/sites/0072424125/ /*************************************************************
阅读全文
posted @
2023-09-28 15:00
®Geovin Du Dream Park™
阅读(12)
评论(0)
推荐(0)
C: Huffman Coding
摘要:HuffmanCoding.h /** * ***************************************************************************** * @file HuffmanCoding.h * @brief Huffman Coding ht
阅读全文
posted @
2023-09-27 09:45
®Geovin Du Dream Park™
阅读(12)
评论(0)
推荐(0)
c: Prim's Algorithm
摘要:PrimsAlgorithm.h /** * ***************************************************************************** * @file PrimsAlgorithm.h * @brief Prim's Algorith
阅读全文
posted @
2023-09-26 17:45
®Geovin Du Dream Park™
阅读(13)
评论(0)
推荐(0)
c: Dijkstra's Algorithm
摘要:DijkstrasAlgorithm.h /** * ***************************************************************************** * @file DijkstrasAlgorithm.h * @brief Dijkstr
阅读全文
posted @
2023-09-26 17:04
®Geovin Du Dream Park™
阅读(15)
评论(0)
推荐(0)
c: Ford - Fulkerson Algorithm
摘要:FordFulkersonAlgorithm.h /** * ***************************************************************************** * @file FordFulkersonAlgorithm.h * @brief
阅读全文
posted @
2023-09-26 16:27
®Geovin Du Dream Park™
阅读(19)
评论(0)
推荐(0)
c: Kruskal Algorithm
摘要:KruskalAlgorithm.h /*****************************************************************//** * \file KruskalAlgorithm.h * \brief Kruskal Algorithm克鲁斯卡尔算法
阅读全文
posted @
2023-09-26 14:57
®Geovin Du Dream Park™
阅读(18)
评论(0)
推荐(0)
c: Sorting Algorithms
摘要:SortAlgorithm.h /*****************************************************************//** * \file SortAlgorithm.h * \brief 业务操作方法 * IDE: VSCODE c11 https
阅读全文
posted @
2023-09-20 14:56
®Geovin Du Dream Park™
阅读(22)
评论(0)
推荐(0)
c: Selection Sort
摘要:SortAlgorithm.h /*****************************************************************//** * \file SortAlgorithm.h * \brief 业务操作方法 * VSCODE c11 https://gi
阅读全文
posted @
2023-09-19 22:55
®Geovin Du Dream Park™
阅读(15)
评论(0)
推荐(0)
Ubuntu 18.0/20.0 vscode 配置 C环境
摘要:文件夹配置参考: https://code.visualstudio.com/docs/editor/variables-reference ${workspaceFolder} - VS Code 中打开的文件夹目录 (通常是项目的位置)${workspaceFolderBasename} - 没
阅读全文
posted @
2023-09-17 19:37
®Geovin Du Dream Park™
阅读(132)
评论(0)
推荐(0)
c:Bubble Sort
摘要:SortAlgorithm.h /*****************************************************************//** * \file SortAlgorithm.h * \brief 业务操作方法 * VSCODE c11 * \author
阅读全文
posted @
2023-09-12 22:36
®Geovin Du Dream Park™
阅读(13)
评论(0)
推荐(0)
cpp: vscode 配置C,C++开发环境 (windows)
摘要:下载编译器MinGW并解压官网页面:https://www.mingw-w64.org/下载页面:https://sourceforge.net/projects/mingw-w64/files/ https://cmake.org/download/ 安装插件“Doxygen Documentat
阅读全文
posted @
2023-09-10 19:46
®Geovin Du Dream Park™
阅读(160)
评论(0)
推荐(0)
cpp: 指针赋值
摘要:char* pp = new char[100]; char d[100] = "geovindu,涂聚文"; string ddstr= "geovindu,涂聚文"; char *dstr=nullptr; pp = d; dstr = &ddstr[0]; printf(dstr); prin
阅读全文
posted @
2023-07-25 22:56
®Geovin Du Dream Park™
阅读(22)
评论(0)
推荐(0)
cpp: double-pointer and double dimensional array
摘要:对于一个二维数组如: int aryy[9][9];求数组元素的总数: sizeof(a) / sizeof(int)而数组行数则为 :( sizeof(a) / sizeof(int) )/ ( sizeof(a[0]) / sizeof(int) )求数组列数: sizeof(a[0])/siz
阅读全文
posted @
2023-07-02 00:32
®Geovin Du Dream Park™
阅读(44)
评论(0)
推荐(0)
cpp: Sudoku
摘要:/*****************************************************************//** * \file ConsoleSudoku.cpp c++ 14 * \brief 九宫独数填充游戏 * from https://github.com/va
阅读全文
posted @
2023-07-01 10:11
®Geovin Du Dream Park™
阅读(62)
评论(0)
推荐(0)
cpp: Two-level pointer and double dimensional array
摘要:/*****************************************************************//** * \file ConsoleTextFileDemoApp.cpp c++ 14 * \brief * * * \author geovindu * \da
阅读全文
posted @
2023-06-30 21:11
®Geovin Du Dream Park™
阅读(8)
评论(0)
推荐(0)
cpp: Interpreter Pattern
摘要:/*****************************************************************//** * \file DuSimple.h * \brief Interpreter Pattern 解释器模式 C++ 14 * 2023年6月10日 涂聚文 G
阅读全文
posted @
2023-06-11 22:16
®Geovin Du Dream Park™
阅读(30)
评论(0)
推荐(0)
cpp: Visitor Pattern
摘要:/*****************************************************************//** * \file Gold.h * \brief 访问者模式 Visitor Pattern C++ 14 行为模式 * 2023年6月8日 涂聚文 Geovi
阅读全文
posted @
2023-06-09 05:56
®Geovin Du Dream Park™
阅读(22)
评论(0)
推荐(0)
cpp: Chain Of Responsibility Pattern
摘要:/*****************************************************************//** * \file PayrollProcessing.h * \brief 责任链模式Chain Of Responsibility Pattern 亦称: 职
阅读全文
posted @
2023-06-07 21:25
®Geovin Du Dream Park™
阅读(26)
评论(0)
推荐(0)
cpp: Memento Pattern
摘要:/*****************************************************************//** * \file ActorMemento.h * \brief 备忘录模式 Memento Pattern亦称:快照、Snapshot、Memento C++
阅读全文
posted @
2023-06-06 21:38
®Geovin Du Dream Park™
阅读(14)
评论(0)
推荐(0)
cpp: Mediator Pattern
摘要:/*****************************************************************//** * \file ControlParent.h * \brief MediatorPattern 中介者模式 亦称: 调解人、控制器、Intermediary
阅读全文
posted @
2023-06-04 23:47
®Geovin Du Dream Park™
阅读(16)
评论(0)
推荐(0)
上一页
1
2
3
4
5
下一页
公告