摘要: 冒泡排序 稳定排序算法 时间复杂度o(n2) 空间复杂度o(1) 点击查看代码 static void BubbleSort() { int[] data = { 1, 8, 5, 7, 9, 4, 6, 99, 88, 74 }; int i, j, flag;//岗哨模式的冒泡排序 for (i 阅读全文
posted @ 2024-02-17 23:26 caoruipeng 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 海洋寻底买卖点: 当海洋寻底出现三柱子的时候,代表中期超跌到底部了。第一个买点:股价站上五日线的第一根阳线,是一个好的买点 水手突破变绿色,代表超跌。 止损点:跌破启动位的第一次反弹 001212不作为推荐 TCL机会非常大 阅读全文
posted @ 2024-01-18 10:09 caoruipeng 阅读(3) 评论(0) 推荐(0) 编辑
摘要: ![image](https://img2023.cnblogs.com/blog/665785/202308/665785-20230816135744830-2037890690.png) ![image](https://img2023.cnblogs.com/blog/665785/2023 阅读全文
posted @ 2023-08-16 18:02 caoruipeng 阅读(27) 评论(0) 推荐(0) 编辑
摘要: ![image](https://img2023.cnblogs.com/blog/665785/202308/665785-20230816133708949-1479586231.png) ![image](https://img2023.cnblogs.com/blog/665785/2023 阅读全文
posted @ 2023-08-16 13:43 caoruipeng 阅读(39) 评论(0) 推荐(0) 编辑
摘要: ![image](https://img2023.cnblogs.com/blog/665785/202308/665785-20230816132600463-1297007111.png) ![image](https://img2023.cnblogs.com/blog/665785/2023 阅读全文
posted @ 2023-08-16 13:37 caoruipeng 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 数据可视化网站 https://www.fanruan.com/bw/qiangtui 阅读全文
posted @ 2023-01-28 13:48 caoruipeng 阅读(5) 评论(0) 推荐(0) 编辑
摘要: MSBuild项描述:ItemGroup标签 阅读全文
posted @ 2023-01-10 14:26 caoruipeng 阅读(9) 评论(0) 推荐(0) 编辑
摘要: MSBuild 属性 MSBuild属性是键值对的集合,提前声明好这些属性之后,整个项目的生成都可以引用这些属性。 属性名不区分大小写。 属性都是写在 PropertyGroup 标签中。 1、声明属性:声明一个属性 BuildDir,属性值为:BuildBin <PropertyGroup> <B 阅读全文
posted @ 2023-01-10 09:39 caoruipeng 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 优秀的个人博客: https://blog.walterlv.com/ 阅读全文
posted @ 2023-01-09 14:02 caoruipeng 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 查看代码 #include <Windows.h> //画点 void PaintSetPixel(HDC hdc) { for (short i = 0; i < 20; i++) { SetPixel(hdc, 30, 30 + i, RGB(0, 0, 255)); } } //画线 void 阅读全文
posted @ 2023-01-04 15:34 caoruipeng 阅读(203) 评论(0) 推荐(1) 编辑