上一页 1 2 3 4 5 6 ··· 31 下一页
摘要: 一、windows平台(版本:opencv-4.5.5-vc14_vc15): 1)设置电脑环境变量: 步骤:高级系统设置-》高级-》环境变量-》path-》D:\study\opencv\opencv\build\x64\vc15\bin 2)项目属性配置(vs2019): -》vc++目录: - 阅读全文
posted @ 2022-11-07 21:34 巨兽~墨菲特 阅读(377) 评论(0) 推荐(0) 编辑
摘要: //按照完全二叉树的层次顺序一次输入节点信息建立二叉链表的算法 #include <stdio.h> #include <stdlib.h> typedef char DataType; typedef struct node { DataType data; struct node* lchild 阅读全文
posted @ 2022-10-11 21:04 巨兽~墨菲特 阅读(53) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <stdlib.h> typedef char DataType; typedef struct node { DataType data; struct node* lchild, * rchild; } BinTNode; typedef 阅读全文
posted @ 2022-10-11 19:30 巨兽~墨菲特 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 在vue2中使用gasp 出现的问题汇总 报错信息 代码: <script> import { BButton } from "bootstrap-vue"; import gsap from "gsap"; import {CSSRulePlugin} from "gsap/CSSRulePlug 阅读全文
posted @ 2022-09-24 16:17 巨兽~墨菲特 阅读(495) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-09-21 22:08 巨兽~墨菲特 阅读(9) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/Alliswell-WP/p/CPlusPlus_MFC_01.html #pragma once #include <afxwin.h> class MyApp :public CWinApp { public: virtual BOOL InitI 阅读全文
posted @ 2022-09-16 13:51 巨兽~墨菲特 阅读(71) 评论(0) 推荐(0) 编辑
摘要: // 第一章认识C++对象1.2.6泛型算法应用于普通数组.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。 // #include <iostream> /** * 要输出数组的内容,对数组进行升幂排序,反转数组的内容、复制数组的内容等操作 包含头文件 <algorithm 阅读全文
posted @ 2021-12-19 14:43 巨兽~墨菲特 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 指向常量的指针、常指针、指向常量的常指针 #include <iostream> using namespace std; int main() { // 指向常量的指针 //const int num = 78; //const int* point = # //cout << *point << 阅读全文
posted @ 2021-12-18 23:58 巨兽~墨菲特 阅读(62) 评论(0) 推荐(0) 编辑
摘要: -- show databases; -- use mysql; -- select * from user; -- create user'root'@'%' identified by '123132; -- GRANT ALL PRIVILEGES ON *.* TO 'root'@'%'; 阅读全文
posted @ 2020-09-23 15:08 巨兽~墨菲特 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-09-06 13:27 巨兽~墨菲特 阅读(67) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 31 下一页