自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(23)
  • 资源 (7)
  • 收藏
  • 关注

原创 Windows10 配置dlib环境

在jupyter中使用pip install dlib 语句安装出现报错。经过搜索以及多次试验后,在anaconda环境中使用以下语句可以成功安装:conda update condaconda update anacondaconda create -n env_dlib python=3.6conda activate env_dlibconda install -c conda-forge dlib...

2022-04-20 07:08:51 290

原创 (美服leetcode)71. Simplify Path

题目:Given a stringpath, which is anabsolute path(starting with a slash'/') to a file or directory in a Unix-style file system, convert it to the simplifiedcanonical path.In a Unix-style file system, a period'.'refers to the current directory, a d...

2022-04-11 10:37:14 375

原创 (美服leetcode)50. Pow(x, n)

题目:Implementpow(x, n), which calculatesxraised to the powern(i.e.,xn).Example 1:Input: x = 2.00000, n = 10Output: 1024.00000Example 2:Input: x = 2.10000, n = 3Output: 9.26100Example 3:Input: x = 2.00000, n = -2Output: 0.25000...

2022-04-11 09:56:58 487

原创 (美服leetcode)227. Basic Calculator II

题目:Given a stringswhich represents an expression,evaluate this expression and return its value.The integer division should truncate toward zero.You may assume that the given expression is always valid. All intermediate results will be in the rang...

2022-04-10 05:52:13 165

原创 (美服leetcode)921. Minimum Add to Make Parentheses Valid

题目:A parentheses string is valid if and only if:It is the empty string, It can be written asAB(Aconcatenated withB), whereAandBare valid strings, or It can be written as(A), whereAis a valid string.You are given a parentheses strings. In...

2022-04-10 04:42:55 438

原创 (美服leetcode)236. Lowest Common Ancestor of a Binary Tree

题目:Given a binary tree, find the lowest common ancestor (LCA) of two given nodes in the tree.According to thedefinition of LCA on Wikipedia: “The lowest common ancestor is defined between two nodespandqas the lowest node inTthat has bothpandq...

2022-04-10 04:06:48 141

原创 (美服leetcode)1026. Maximum Difference Between Node and Ancestor

题目:Given therootof a binary tree, find the maximum valuevfor which there existdifferentnodesaandbwherev = |a.val - b.val|andais an ancestor ofb.A nodeais an ancestor ofbif either: any child ofais equal tobor any child ofais an ...

2022-01-01 02:25:28 165

原创 (美服leetcode)1015. Smallest Integer Divisible by K

题目:Given a positive integerk, you need to find thelengthof thesmallestpositive integernsuch thatnis divisible byk, andnonly contains the digit1.Returnthelengthofn. If there is no suchn, return -1.Note:nmay not fit in a 64-bit sign...

2021-12-31 03:03:47 176

原创 (美服leetcode)116. Populating Next Right Pointers in Each Node

题目:You are given aperfect binary treewhere all leaves are on the same level, and every parent has two children. The binary tree has the following definition:struct Node { int val; Node *left; Node *right; Node *next;}Populate each next p..

2021-12-30 01:13:23 305

原创 (美服leetcode) 1901. Find a Peak Element II

题目:Apeakelement in a 2D grid is an element that isstrictly greaterthan all of itsadjacentneighbors to the left, right, top, and bottom.Given a0-indexedm x nmatrixmatwhereno two adjacent cells are equal, findanypeak elementmat[i][j]and r...

2021-12-29 06:23:14 602

原创 (美服leetcode) 973. K Closest Points to Origin

题目:Given an array ofpointswherepoints[i] = [xi, yi]represents a point on theX-Yplane and an integerk, return thekclosest points to the origin(0, 0).The distance between two points on theX-Yplane is the Euclidean distance (i.e.,√(x1- x2)2...

2021-12-27 04:44:09 161

原创 (美服leetcode)1823. Find the Winner of the Circular Game

题目There arenfriends that are playing a game. The friends are sitting in a circle and are numbered from1toninclockwise order. More formally, moving clockwise from theithfriend brings you to the(i+1)thfriend for1 <= i < n, and moving cloc...

2021-12-26 04:20:48 274

原创 JQuery学习记录2021.06.22

Templates:1. arrow (类似Java的Lamda)代码分析: 通过 => 来代替 function 关键词 通过 `${}` 来将变量中的值嵌入字符串代码展示:$(function () { //function addNum(params) { // return params + 2; //} const addNum = (params...

2021-06-22 16:02:44 144

原创 HTML&Javascript学习记录2021.06.04

1. Frames分屏<frameset rows="50%,*" id = "TopWindow"> <frame name="UpperWindow" src="UpperWindow.htm"> <frame name="LowerWindow" src="LowerWindow.htm"></frameset> 从 <frame> 窗口访问 <frameset> 窗口window.parent.

2021-06-04 22:04:56 191 2

原创 HTML学习记录2021.06.03

1.<form>参数:

2021-06-03 18:31:28 156

原创 Javascript学习记录2021.05.31

1.变量var: 全局变量,整个js文件里都能访问到let: 块变量,只有程序块内部能访问到变量的初始化:例如String、Date等变量可以使用new和构造器进行初始化,而html中的部分标签如:<tr>、<table>、<td>、<div>等则可以使用 document.createElement('标签名') 的方式初始化。变量的获取:对于拥有id的变量,可以使用 document.getElementById("id") 的方式

2021-05-31 23:12:04 251 3

原创 HTML学习记录2021.05.22

根据不同设备的屏幕尺寸改变界面样式屏幕宽度大于768px屏幕宽度小于768px,大于480px屏幕宽度小于480px代码展示<!DOCTYPE html><html lang="en"><head><title>Casita Sedona</title><meta charset="utf-8"><meta name="viewport" content="width=device-wi

2021-05-22 21:26:17 425

原创 HTML学习记录 2021.05.21

1. 部分元素属性<br> 换行符,不需要结束标签 “</br>”<ul>中的 list-style-type: none消除 <ul> 中子元素 <li>前的小圆点<a>中的 text-decoration: none消除 <a> 元素本身的超链接文本样式2. 侧边栏<nav>界面效果:代码展示:<!DOCTYPE html><html lang...

2021-05-21 21:21:08 342

原创 HTML学习记录 2021.05.13

学习链接:HTML: HyperText Markup LanguageCSS: Cascading Style Sheets1、CSS文件的添加方式css文件路径:css代码:header{ text-align: center;}#container{ width: 80%; margin-left: auto; margin-right: auto;}.gallery{ float: left; width: 15

2021-05-13 16:05:20 200

原创 使用F12下载GoToMeeting上录播的方法

众所周知,GoToMeeting的服务器不足以支持我们流畅的观看录播课。因此将录播下载下来观看成了我们获取流畅录播资源的方法。那么这么好的方法需要什么样的操作呢?首先,打开录屏的链接进入到如下界面注意:不要点击开始!等待界面加载完成!等带界面加载完整后,点击键盘上的 “F12按钮” 并进入 “Network” 界面,如下图所示。打开F12界面后,点击播放界面,播放录播课(如下图所示)。待视频成功播放后,查看F12界面上显示的内容(如下图所示)。...

2021-02-16 18:16:45 648

原创 使用Chrome的无障碍字幕系统,让你“看”懂美国网课

众所周知,对于上网课的出国学生来说,听力是一道跨不过去的坎。每天上网课的常态就是,听一遍网课,课下再翻译一遍做笔记。然而,Chrome有一个非常方便的功能,能够让你完成从听不懂到看懂的转变。首先打开Chrome,在搜索栏输入chrome://flags ,单机回车在搜索栏输入 Live Captions将搜索出来的功能调成 Enabled点右上角的三个点,进入设置点击 高级再点击 无障碍选择 为您的媒体生成字幕接下来随便打开一个...

2021-01-20 17:23:26 4916 1

原创 C++ Primer Plus 学习日记1

第3章 处理数据C++ climits 中的符号常量C++ climits 中的符号常量 符号常量 表示 值 CHAR_BIT char 的位数 8 CHAR_MAX char 的最大值 127 CHAR_MIN char 的最小值 -128 SCHAR_MAX signed char...

2020-12-21 15:40:40 156

原创 Python Process finished with exit code 2 解决方案

在使用python中matplotlib.pyplot库画图的时候出现了下图的错误百度了很久,没有找到答案尝试看了一下库的版本尝试更新一下指令是pip install --upgrade matplotlib这张图是我更新之后又运行了一遍指令显示的,可以看出来已经更新到最高版本了。回PyCharm运行一下成功了看看图效果不错...

2020-05-16 17:34:02 14707 4

Sping Boot+Vue实现的前后端分离的管理系统

Sping Boot+Vue实现的前后端分离的管理系统,由微人事系统再开发而来。 通过leaflet+GIS实现3D地图的预览,包含人员管理 包含前后端代码以及数据库导入脚本,需要电脑上预置redis和RabbitMQ redis教程:https://www.runoob.com/redis/redis-install.html 指令:redis-server.exe redis.windows.conf redis-cli -a 123 rabbit教程:https://blog.youkuaiyun.com/hellozpc/article/details/81436980 指令:rabbitmq-plugins enable rabbitmq_management

2020-03-10

51单片机实现计算器C语言版.rar

C语言实现的基于51单片机的计算器,包含带括号的浮点数运算。实现6位数以内的加减乘除四则运算。 基本没有特殊的BUG。代码可以直接运行,可通过PZISP烧制,通过Keil3_Full编译

2020-03-10

用python实现微信对指定对象自动回复(可指定内容,默认收到)

用python实现微信对指定对象自动回复(可指定内容,默认收到)。可修改代码。

2019-10-06

multithread.rar

C语言实现FTP 服务器与客户端功能。实现指令get、put、pwd、dir、cd、mkdir、rmdir、help、quit。实现主动模式与被动模式的连接方式。 注意:在使用DEV编译前需要在 工具->编译器选项->在连接器命令行下输入以下命令:-lws2_32

2019-06-30

百度OCR的eclipse移植版(带build.gradle文件)

可以直接在eclipse上进行导入,导入后可进行后续编译。压缩包中含有已经编译完成的apk文件,可以直接使用。

2018-12-20

Linux下Oracle的安装

Linux下Oracle的安装,包含了vxbox虚拟机和linux下的Oracle安装包

2018-07-05

c语言 小学生信息管理系统

比较简单的管理系统,健壮性什么的还可以吧,用了一些查找算法。

2017-03-20

空空如也

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

TA关注的人

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