自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(9)
  • 资源 (2)
  • 收藏
  • 关注

原创 [2021]免费下载外文文献

一、获取文献的DOI号点击网址 https://sci-hub.org.cn/,输入所需要下载的外文文献的名称,搜索后可查询到文献的DOI号并复制。二、下载外文文献工具:sci-hub域名:1:https://gfsoso.99lb.net/sci-hub.html2:https://sci-hub.shop/3:https://sci-hub.ren4:https://sci-hub.tw/5:https://sci-hub.se/点击任一可用网址进入后,将复制好的DOI号输入查询框内

2021-04-04 16:46:05 2864

原创 (leetcode)二叉树层次遍历

/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */class Solution {public: vector<vector<int>>

2020-07-24 14:23:44 133

原创 (leetcode)二叉树后序遍历

/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */class Solution {public: vector<int> postorderTrav

2020-07-24 13:47:24 100

原创 (leetcode)二叉树的中序遍历

/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */class Solution {public: vector<int> inorderTraver

2020-07-24 09:08:40 123

原创 (leetcode)二叉树的前序遍历

/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */class Solution {public: vector<int> preorderTrave

2020-07-24 09:07:50 100

原创 微信小程序快速入门(一)——框架主体文件

一、app.json 全局配置{ // 页面路径设置 "pages" : [], // 默认页面的窗口设置 "window" : {}, // 底部tab设置 "tabBar" : {}, // 设置网络请求API的超时时间 "networkTimeout" : {}, // 是否为debug模式 "debug" : false}二、app.js 注...

2020-04-11 19:16:27 189

原创 微信小程序快速入门(二)——页面配置文件

一、.json文件 页面配置只含有window属性,控制当前页面的窗口表现{ "navigationBarBackgroundColor": "#000000", "navigationBarTextStyle": "black", "navigationBarTitleText": "我的页面", "backgroundColor": "#efefef", "backgr...

2020-04-11 19:13:44 273

原创 微信小程序布局快速入门

前言本文是作者在学习微信小程序时为掌握页面布局而参考多种资料整理而成,希望能帮助大家在开发的过程中快速上手。一、盒子模型每个元素都会生成一个矩形框,每个元素框中心都有一个内容区(content),这个内容区周围有内边距(padding)、边框(border)和外边距(margin),默认宽度为0。Tip:WXSS完全遵循W3C盒子模型规范w3c中的盒子模型的宽:包括margin+bor...

2020-04-11 17:22:05 1006

转载 求解n皇后问题

n皇后问题——回溯法递归的逻辑中一般有两个重要的概念1.递归边界2.递归式1.问题描述在n×n格的国际象棋上摆放n个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法。递归思想int count = 0;void generateP(int index){ if(index == n+1){ //递归边界 bo...

2019-03-02 20:33:52 619

手写数字识别.zip

基于KNN算法实现手写数字识别系统

2021-02-14

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除