会员
商店
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
®Geovin Du Dream Park™
why we only heard about haves and have-nots, but we did'nt heard about doers and doer-nots. 人生是一种心境,生活是一种艺术,成功是一种心态,幸福是一种感觉,竞争是一种建构,情感是一种容合.学习是一种成长.
博客园
首页
新随笔
联系
管理
订阅
随笔- 1135 文章- 97 评论- 88 阅读-
70万
随笔分类 -
Cpp programming
上一页
1
2
3
4
5
下一页
CPlusPlus programming language
C: Huffman Coding
摘要:HuffmanCoding.h /** * ***************************************************************************** * @file HuffmanCoding.h * @brief Huffman Coding ht
阅读全文
posted @
2023-09-27 09:45
®Geovin Du Dream Park™
阅读(5)
评论(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™
阅读(5)
评论(0)
推荐(0)
编辑
c: Dijkstra's Algorithm
摘要:DijkstrasAlgorithm.h /** * ***************************************************************************** * @file DijkstrasAlgorithm.h * @brief Dijkstr
阅读全文
posted @
2023-09-26 17:04
®Geovin Du Dream Park™
阅读(5)
评论(0)
推荐(0)
编辑
c: Ford - Fulkerson Algorithm
摘要:FordFulkersonAlgorithm.h /** * ***************************************************************************** * @file FordFulkersonAlgorithm.h * @brief
阅读全文
posted @
2023-09-26 16:27
®Geovin Du Dream Park™
阅读(8)
评论(0)
推荐(0)
编辑
c: Kruskal Algorithm
摘要:KruskalAlgorithm.h /*****************************************************************//** * \file KruskalAlgorithm.h * \brief Kruskal Algorithm克鲁斯卡尔算法
阅读全文
posted @
2023-09-26 14:57
®Geovin Du Dream Park™
阅读(7)
评论(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™
阅读(13)
评论(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™
阅读(10)
评论(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™
阅读(117)
评论(0)
推荐(0)
编辑
c:Bubble Sort
摘要:SortAlgorithm.h /*****************************************************************//** * \file SortAlgorithm.h * \brief 业务操作方法 * VSCODE c11 * \author
阅读全文
posted @
2023-09-12 22:36
®Geovin Du Dream Park™
阅读(8)
评论(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™
阅读(124)
评论(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™
阅读(17)
评论(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™
阅读(22)
评论(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™
阅读(37)
评论(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™
阅读(4)
评论(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™
阅读(14)
评论(0)
推荐(0)
编辑
上一页
1
2
3
4
5
下一页
公告
我痴痴的等,幽幽的怨,望穿了秋水,辗转了缠绵,想坏了脾胃,思伤了心肝,累坏了腿情。总想深情的问:何时共诉情愫时?
昵称:
®Geovin Du Dream Park™
园龄:
19年4个月
粉丝:
64
关注:
51
+加关注
<
2025年3月
>
日
一
二
三
四
五
六
23
24
25
26
27
28
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
搜索
常用链接
我的随笔
我的评论
我的参与
最新评论
我的标签
更多链接
我的标签
csharp
(216)
desgin patterns
(150)
设计模式
(120)
patterns
(95)
sql
(89)
JavaScript
(70)
sql server
(65)
MySQL
(61)
pdf
(52)
css
(52)
更多
积分与排名
积分 - 447398
排名 - 1694
随笔分类
Ajax&JavaScript(162)
Android& iOS(1)
Cpp programming(84)
CSharp code(336)
CSS,HTML(61)
Java(79)
PHP(12)
Python(173)
WebForm & WinForm(25)
架构设计(37)
其他语言(5)
区域化开发(4)
软件工程(6)
生活足迹(7)
视频、图形及其他(17)
数据库编程(131)
数据通信(1)
数值算法(7)
更多
随笔档案
2025年3月(3)
2025年2月(12)
2025年1月(12)
2024年12月(17)
2024年11月(12)
2024年10月(11)
2024年9月(1)
2024年8月(9)
2024年7月(5)
2024年6月(10)
2024年5月(6)
2024年4月(8)
2024年2月(1)
2024年1月(12)
2023年12月(12)
2023年11月(12)
2023年10月(43)
2023年9月(37)
2023年8月(3)
2023年7月(33)
2023年6月(37)
2023年5月(24)
2023年4月(22)
2023年3月(7)
2023年2月(11)
2023年1月(11)
2022年12月(14)
2022年11月(29)
2022年10月(64)
2022年9月(44)
2022年8月(2)
2022年7月(3)
2022年6月(4)
2022年4月(4)
2022年3月(6)
2022年2月(3)
2022年1月(13)
2021年12月(14)
2021年11月(2)
2021年9月(2)
2021年8月(1)
2021年7月(1)
2021年6月(2)
2021年3月(2)
2021年2月(2)
2020年12月(1)
2020年9月(1)
2020年8月(4)
2020年7月(2)
2020年6月(2)
2020年5月(2)
2020年3月(1)
2020年1月(1)
2019年12月(1)
2019年10月(2)
2019年8月(1)
2019年7月(2)
2019年6月(3)
2019年5月(4)
2019年4月(2)
2019年3月(2)
2019年2月(1)
2019年1月(2)
2018年12月(1)
2018年11月(3)
2018年10月(1)
2018年9月(3)
2018年8月(7)
2018年7月(5)
2018年6月(3)
2018年5月(3)
2018年4月(1)
2018年3月(2)
2018年2月(6)
2018年1月(4)
2017年12月(1)
2017年11月(3)
2017年10月(1)
2017年9月(3)
2017年8月(4)
2017年7月(2)
2017年6月(7)
2017年5月(3)
2017年4月(3)
2017年3月(1)
2017年2月(2)
2017年1月(2)
2016年12月(3)
2016年11月(1)
2016年10月(2)
2016年9月(5)
2016年8月(10)
2016年7月(3)
2016年6月(2)
2016年5月(4)
2016年4月(1)
2016年3月(7)
2016年2月(2)
2016年1月(6)
2015年12月(5)
2015年11月(10)
2015年10月(5)
2015年9月(6)
2015年8月(5)
2015年7月(12)
2015年6月(5)
2015年5月(5)
2015年4月(6)
2015年3月(16)
2015年2月(10)
2015年1月(4)
2014年12月(3)
2014年11月(1)
2014年10月(2)
2014年9月(1)
2014年8月(7)
2014年7月(4)
2014年6月(7)
2014年5月(5)
2014年4月(4)
2014年3月(2)
2014年2月(5)
2014年1月(4)
2013年12月(4)
2013年11月(1)
2013年10月(4)
2013年9月(1)
2013年8月(4)
2013年7月(10)
2013年6月(7)
2013年5月(7)
2013年4月(4)
2013年3月(8)
2013年2月(1)
2013年1月(6)
2012年12月(5)
2012年11月(2)
2012年10月(2)
2012年9月(6)
2012年8月(7)
2012年7月(2)
2012年6月(2)
2012年5月(5)
2012年4月(2)
2012年3月(3)
2012年2月(3)
2012年1月(5)
2011年12月(1)
2011年11月(8)
2011年10月(3)
2011年9月(5)
2011年8月(7)
2011年7月(7)
2011年6月(5)
2011年5月(9)
2011年4月(5)
2011年3月(4)
2011年2月(1)
2011年1月(3)
2010年12月(5)
2010年11月(7)
2010年10月(1)
2010年9月(7)
2010年8月(4)
2010年7月(2)
2010年6月(6)
2010年4月(6)
2010年3月(3)
2010年2月(2)
2010年1月(4)
2009年12月(8)
2009年11月(7)
2009年10月(7)
2009年9月(2)
2009年8月(9)
2009年7月(2)
2009年6月(3)
2009年3月(2)
2009年2月(5)
2009年1月(2)
2007年9月(1)
2007年7月(1)
2007年6月(1)
2006年2月(1)
2005年12月(2)
更多
文章分类
法律法规(6)
工程质量(6)
技术参考(66)
诗词曲品(6)
行业规范(5)
字海文摘(9)
相册
自丑相(3)
捷为工作室
Geovin Du
捷为工作室
.NET Framework source
缔友计算机信息技术有限公司
阅读排行榜
1. 香港拼音-汉字对照表(107142)
2. IQ, EQ, CQ, AQ, BQ, NQ, FQ, DQ, SQ, MQ 十商(21265)
3. Create virtual keyboard using C# Winform Application(9014)
4. csharp:Microsoft.Ink 手写识别(HandWriting Recognition)(7880)
5. 漢字轉換成拼音(7038)
评论排行榜
1. csharp:Microsoft.Ink 手写识别(HandWriting Recognition)(6)
2. csharp: Setting the value of properties reflection(4)
3. SQL2000 处理18位,15位的身份证号码从号码中得到生日和性别代码,邮政编码,籍贯(4)
4. csharp: using HtmlAgilityPack and ScrapySharp reading Url find text(3)
5. sql 显示星期几函数(3)
推荐排行榜
1. Csharp:Windowsform using CheckedListBox Datasource(2)
2. cpp: vs 2022 文件头注释插件(1)
3. css: slides container display image(1)
4. Baidu ueditor 1.5 using asp.net(1)
5. csharp: Emgu.CV.OCR and Tesseract.OCR Optical Character Recognition(1)
最新评论
1. Re:HTML5 Video player jQuery plugin
@weblogical 代码中有这个连接,有全部源代码下载。...
--®Geovin Du Dream Park™
2. Re:HTML5 Video player jQuery plugin
哪几个背景图片 能共享一下吗?
--weblogical
3. Re:SQL2000 处理18位,15位的身份证号码从号码中得到生日和性别代码,邮政编码,籍贯
@QRENX 必须相应的地址有对应的邮编字段,查询得出。看脚本也看得出来了。...
--®Geovin Du Dream Park™
4. Re:SQL2000 处理18位,15位的身份证号码从号码中得到生日和性别代码,邮政编码,籍贯
想请教下,邮编是怎么得到的?
--QRENX
5. Re:SQL2000 处理18位,15位的身份证号码从号码中得到生日和性别代码,邮政编码,籍贯
@QRENX 代码已经写在上面....
--®Geovin Du Dream Park™
点击右上角即可分享