随笔分类 -  Cpp programming

CPlusPlus programming language
摘要:Programming in C++ (mheducation.com) https://highered.mheducation.com/sites/0072424125/ /************************************************************* 阅读全文
posted @ 2023-09-28 15:00 ®Geovin Du Dream Park™ 阅读(12) 评论(0) 推荐(0)
摘要:HuffmanCoding.h /** * ***************************************************************************** * @file HuffmanCoding.h * @brief Huffman Coding ht 阅读全文
posted @ 2023-09-27 09:45 ®Geovin Du Dream Park™ 阅读(12) 评论(0) 推荐(0)
摘要:PrimsAlgorithm.h /** * ***************************************************************************** * @file PrimsAlgorithm.h * @brief Prim's Algorith 阅读全文
posted @ 2023-09-26 17:45 ®Geovin Du Dream Park™ 阅读(13) 评论(0) 推荐(0)
摘要:DijkstrasAlgorithm.h /** * ***************************************************************************** * @file DijkstrasAlgorithm.h * @brief Dijkstr 阅读全文
posted @ 2023-09-26 17:04 ®Geovin Du Dream Park™ 阅读(15) 评论(0) 推荐(0)
摘要:FordFulkersonAlgorithm.h /** * ***************************************************************************** * @file FordFulkersonAlgorithm.h * @brief 阅读全文
posted @ 2023-09-26 16:27 ®Geovin Du Dream Park™ 阅读(19) 评论(0) 推荐(0)
摘要:KruskalAlgorithm.h /*****************************************************************//** * \file KruskalAlgorithm.h * \brief Kruskal Algorithm克鲁斯卡尔算法 阅读全文
posted @ 2023-09-26 14:57 ®Geovin Du Dream Park™ 阅读(18) 评论(0) 推荐(0)
摘要:SortAlgorithm.h /*****************************************************************//** * \file SortAlgorithm.h * \brief 业务操作方法 * IDE: VSCODE c11 https 阅读全文
posted @ 2023-09-20 14:56 ®Geovin Du Dream Park™ 阅读(22) 评论(0) 推荐(0)
摘要:SortAlgorithm.h /*****************************************************************//** * \file SortAlgorithm.h * \brief 业务操作方法 * VSCODE c11 https://gi 阅读全文
posted @ 2023-09-19 22:55 ®Geovin Du Dream Park™ 阅读(15) 评论(0) 推荐(0)
摘要:文件夹配置参考: 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)
摘要:SortAlgorithm.h /*****************************************************************//** * \file SortAlgorithm.h * \brief 业务操作方法 * VSCODE c11 * \author 阅读全文
posted @ 2023-09-12 22:36 ®Geovin Du Dream Park™ 阅读(13) 评论(0) 推荐(0)
摘要:下载编译器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)
摘要: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)
摘要:对于一个二维数组如: 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)
摘要:/*****************************************************************//** * \file ConsoleSudoku.cpp c++ 14 * \brief 九宫独数填充游戏 * from https://github.com/va 阅读全文
posted @ 2023-07-01 10:11 ®Geovin Du Dream Park™ 阅读(62) 评论(0) 推荐(0)
摘要:/*****************************************************************//** * \file ConsoleTextFileDemoApp.cpp c++ 14 * \brief * * * \author geovindu * \da 阅读全文
posted @ 2023-06-30 21:11 ®Geovin Du Dream Park™ 阅读(8) 评论(0) 推荐(0)
摘要:/*****************************************************************//** * \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)
摘要:/*****************************************************************//** * \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)
摘要:/*****************************************************************//** * \file PayrollProcessing.h * \brief 责任链模式Chain Of Responsibility Pattern 亦称: 职 阅读全文
posted @ 2023-06-07 21:25 ®Geovin Du Dream Park™ 阅读(26) 评论(0) 推荐(0)
摘要:/*****************************************************************//** * \file ActorMemento.h * \brief 备忘录模式 Memento Pattern亦称:快照、Snapshot、Memento C++ 阅读全文
posted @ 2023-06-06 21:38 ®Geovin Du Dream Park™ 阅读(14) 评论(0) 推荐(0)
摘要:/*****************************************************************//** * \file ControlParent.h * \brief MediatorPattern 中介者模式 亦称: 调解人、控制器、Intermediary 阅读全文
posted @ 2023-06-04 23:47 ®Geovin Du Dream Park™ 阅读(16) 评论(0) 推荐(0)