摘要:
http://www.gitblit.com/setup_filestore.html 阅读全文
摘要:
一、windows平台(版本:opencv-4.5.5-vc14_vc15): 1)设置电脑环境变量: 步骤:高级系统设置-》高级-》环境变量-》path-》D:\study\opencv\opencv\build\x64\vc15\bin 2)项目属性配置(vs2019): -》vc++目录: - 阅读全文
摘要:
//按照完全二叉树的层次顺序一次输入节点信息建立二叉链表的算法 #include <stdio.h> #include <stdlib.h> typedef char DataType; typedef struct node { DataType data; struct node* lchild 阅读全文
摘要:
#include <stdio.h> #include <stdlib.h> typedef char DataType; typedef struct node { DataType data; struct node* lchild, * rchild; } BinTNode; typedef 阅读全文
摘要:
在vue2中使用gasp 出现的问题汇总 报错信息 代码: <script> import { BButton } from "bootstrap-vue"; import gsap from "gsap"; import {CSSRulePlugin} from "gsap/CSSRulePlug 阅读全文
摘要:
https://www.cnblogs.com/Alliswell-WP/p/CPlusPlus_MFC_01.html #pragma once #include <afxwin.h> class MyApp :public CWinApp { public: virtual BOOL InitI 阅读全文
摘要:
// 第一章认识C++对象1.2.6泛型算法应用于普通数组.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。 // #include <iostream> /** * 要输出数组的内容,对数组进行升幂排序,反转数组的内容、复制数组的内容等操作 包含头文件 <algorithm 阅读全文
摘要:
指向常量的指针、常指针、指向常量的常指针 #include <iostream> using namespace std; int main() { // 指向常量的指针 //const int num = 78; //const int* point = # //cout << *point << 阅读全文