摘要: 算法在广不在精,随遇而安,快乐常在。 经验在广不在精,高级在专,不在广。 全栈就是骗子空手套白狼,技多不压身就是谎言,其实就是让你卷。 术业有专攻,正道是沧桑。 c++ 算法汇总 第一节 链表 1.反转链表 https://www.cnblogs.com/sundayvc/p/16598319.ht 阅读全文
posted @ 2023-01-05 11:15 sundaysc++ 阅读(106) 评论(0) 推荐(0) 编辑
摘要: C++—— https://blog.csdn.net/ldm_666/article/details/118228505 阅读全文
posted @ 2022-08-22 13:57 sundaysc++ 阅读(8) 评论(0) 推荐(0) 编辑
摘要: C++ 1 #include "stdafx.h" 2 #include <stdlib.h> 3 struct Node{ 4 int data; 5 Node* next; 6 }; 7 8 void print1(Node *head) 9 { 10 Node *p; 11 p=head; 1 阅读全文
posted @ 2022-08-18 12:51 sundaysc++ 阅读(19) 评论(0) 推荐(0) 编辑
摘要: Java实现方式 描述 输入一个链表,按链表从尾到头的顺序返回一个ArrayList。 代码 /** * public class ListNode { * int val; * ListNode next = null; * * ListNode(int val) { * this.val = v 阅读全文
posted @ 2022-08-18 11:49 sundaysc++ 阅读(21) 评论(0) 推荐(0) 编辑
摘要: https://jingyan.baidu.com/article/219f4bf7bef629de442d3827.html win10的自动更新有时候很烦人,总是在联网的时候自动下载更新包,很多小伙伴想删除下载的更新包却不知如何删除,下面就教大家如何去删除 工具/原料 win10 方法/步骤 首 阅读全文
posted @ 2021-05-08 22:48 sundaysc++ 阅读(1121) 评论(0) 推荐(0) 编辑
摘要: https://wenda.so.com/q/1462499782728527 依次进入【设置】-【系统】-【储存】,把储存感知功能的开关打开,点击【立即释放空间】的按钮,勾选【以前的Windows安装】删除。以下是详细介绍: 方法一:在设置中开启【存储感知】 1、从Win10开始菜单打开【设置】- 阅读全文
posted @ 2021-05-08 22:37 sundaysc++ 阅读(1851) 评论(0) 推荐(0) 编辑
摘要: Mat src, dst; int threshold_value = 127; int threshold_max = 255; const char* output_title = "binary image"; void Threshold_dome(int, void*); Mat gray 阅读全文
posted @ 2021-01-07 01:21 sundaysc++ 阅读(57) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/ee72f5215e07 概念 利用morphologyEx这个函数可以方便的对图像进行一系列的膨胀腐蚀组合。 函数讲解 ●函数原型 ○c++ void morphologyEx( InputArray src, OutputArray dst, 阅读全文
posted @ 2021-01-06 23:18 sundaysc++ 阅读(915) 评论(0) 推荐(0) 编辑
摘要: void test() { Mat src = imread("D:/opencvsp/pic.png"); if (src.empty()) { printf("could not load image\n"); return -1; } namedWindow("test opencv setu 阅读全文
posted @ 2021-01-04 22:10 sundaysc++ 阅读(59) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/5b2387137e3a?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation https://www.cnblogs.com/ 阅读全文
posted @ 2021-01-02 18:56 sundaysc++ 阅读(1163) 评论(0) 推荐(0) 编辑