上一页 1 2 3 4 5 6 ··· 14 下一页
摘要: //判断字符串是否是回文字符串(考虑大小写,空格和标点符号) bool palindrome1(string& str) { string ret; for (auto& c : str) { if (isalpha(c)) { if (isupper(c)) { ret.push_back(tol 阅读全文
posted @ 2024-02-20 18:37 wshidaboss 阅读(408) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <stack> using namespace std; struct ListNode { int val; ListNode* next; ListNode(int x) :val(x), next(nullptr) {} }; List 阅读全文
posted @ 2024-02-12 17:00 wshidaboss 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 给定两个增序的链表,试将其合并成一个增序的链表。 #include <iostream> #include <stack> using namespace std; struct ListNode { int val; ListNode* next; ListNode(int x) :val(x), 阅读全文
posted @ 2024-02-12 13:45 wshidaboss 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 题目:假设链表中每一个节点的值都在 0 - 9 之间,那么链表整体就可以代表一个整数。给定两个这种链表,请生成代表两个整数相加值的结果链表。数据范围:0≤n,m≤1000000,链表任意值 0≤val≤9要求:空间复杂度 O(n),时间复杂度 O(n)例如:链表 1 为 9->3->7,链表 2 为 阅读全文
posted @ 2024-02-12 13:09 wshidaboss 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 给定一个非负整数 c ,你要判断是否存在两个整数 a 和 b,使得 a2 + b2 = c 。 使用双指针: #include <iostream> #include <math.h> using namespace std; bool judge(long c) { if (c < 0) retu 阅读全文
posted @ 2024-02-03 11:48 wshidaboss 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 1.有一群孩子和一堆饼干,每个孩子有一个饥饿度,每个饼干都有一个大小。每个孩子只能吃一个饼干,且只有饼干的大小不小于孩子的饥饿度时,这个孩子才能吃饱。求解最多有多少孩子可以吃饱。 #include <iostream> #include <vector> #include <algorithm> u 阅读全文
posted @ 2024-02-01 17:06 wshidaboss 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 图形的绘制与填充: //图形的绘制与填充 Mat canvas = Mat::zeros(Size(512, 512), CV_8UC3); namedWindow("canvas", WINDOW_AUTOSIZE); //相关绘制API演示 //绘制直线 line(canvas, Point(1 阅读全文
posted @ 2024-01-12 22:18 wshidaboss 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 要求:点击一个按钮,打开另一个窗口,再次点击该按钮,关闭打开的另一个窗口。 QPushButton *btn = new QPushButton("open",this); btn->move(100,100); QWidget *widget = new QWidget; widget->setW 阅读全文
posted @ 2024-01-12 15:44 wshidaboss 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 头文件: #ifndef DIGITALCLOCK_H #define DIGITALCLOCK_H #include <QLCDNumber> class digitalClock : public QLCDNumber { Q_OBJECT public: digitalClock(QWidge 阅读全文
posted @ 2024-01-11 14:18 wshidaboss 阅读(109) 评论(0) 推荐(0) 编辑
摘要: #include <opencv2/opencv.hpp> #include <iostream> using namespace std; using namespace cv; int main() { Mat img = imread("C:/img/3.jpg"); Mat img32; i 阅读全文
posted @ 2024-01-07 17:50 wshidaboss 阅读(29) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 14 下一页