自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(31)
  • 资源 (1)
  • 收藏
  • 关注

原创 汇编语言笔记——基础知识

以下内容输入笔记,并非总结为什么要学习汇编语言在根本上认识、理解计算机的工作过程在计算机系统中,一些功能必须使用汇编语言的程序来实现eg : 系统初始化,机器的自检计算机程序设计语言共有机器语言,高级语言,汇编语言1.机器语言:顾名思义,也就是机器能够识别的语言把控制计算机的命令和各种数据直接用二进制数码表示的一种程序设计语言。* 优点:最直接的表示了计算机内部的基本操...

2019-03-31 21:04:44 496

原创 MySQL8.0安装与环境配置win10

1.下载安装官网地址https://dev.mysql.com/downloads/file/?id=484900解压zip包,并记住此路径在path中添加bin文件的路径编写配置文件[mysqld]# 设置3306端口port=3306# 设置mysql的安装目录basedir=C:\moliy\code\resource\mysql-8.0.15-...

2019-03-31 13:06:35 1226

原创 Number of Atoms——LeetCode进阶路

原题链接https://leetcode.com/problems/number-of-atoms/题目描述Given a chemical formula (given as a string), return the count of each atom.An atomic element always starts with an uppercase character, then...

2019-03-30 09:41:32 237

原创 蓝桥杯2019java b组

给定一个数列 1 1 1 3 5 9 17……,这个数列第四项开始等于前三项的和,让你求出第20190324项的最后四位数。package BlueCup;public class Main { public static void main(String[] args) { long res = 0; long[] array = new l...

2019-03-29 19:46:14 535

原创 Partition to K Equal Sum Subsets——LeetCode进阶路

原题链接https://leetcode.com/problems/partition-to-k-equal-sum-subsets/题目描述Given an array of integers nums and a positive integer k, find whether it’s possible to divide this array into k non-empty su...

2019-03-28 15:34:56 339

原创 debug与DOSBox安装&&debug命令操作

DOSBox下载https://sourceforge.net/projects/dosbox/files/dosbox/0.74-2/DOSBox0.74-2-win32-installer.exe/downloaddebug下载链接:https://pan.baidu.com/s/1c1rph04y4ZAZrTQfZJuazA提取码:bxcc……//夜跑完再接着码...

2019-03-25 21:05:25 3525

原创 Longest Univalue Path——LeetCode进阶路

原题链接https://leetcode.com/problems/longest-univalue-path题目描述Given a binary tree, find the length of the longest path where each node in the path has the same value. This path may or may not pass th...

2019-03-25 15:38:14 226

原创 JavaScript入门笔记day1

何为JavaScript题外话,JavaScript并非java的简版,这在核心技术里第一章就提到过~java与JavaScript除了在语法方面丢丢类似(实际上它的语法风格与Self及Scheme较为接近)之外,毫无关系!据说是管理层希望它外观看起来像Java,因此取名为JavaScript……文章目录何为JavaScriptJavaScript与HTML的结合方式JavaScrip...

2019-03-25 08:04:27 167

原创 Redundant Connection——LeetCode进阶路

原题链接https://leetcode.com/problems/redundant-connection/题目描述In this problem, a tree is an undirected graph that is connected and has no cycles.The given input is a graph that started as a tree wit...

2019-03-23 21:31:06 182

原创 Tomcat启动信息乱码

异常描述:大概看到这个鬼样子……打开tomcat解压后文件:conf -> logging.properties右键,选择以记事本或其他方式打开(只要能修改文件内容的软件都OK)找到java.util.logging.ConsoleHandler.encoding = UTF-8把UTF-8改为GBKUTF-8万国码,顾名思义就是包含很多国家的字符编码,其中包括简体中...

2019-03-22 12:17:17 2180

原创 Friend Circles(dfs)——LeetCode进阶路

原题链接https://leetcode.com/problems/friend-circles/题目描述There are N students in a class. Some of them are friends, while some are not. Their friendship is transitive in nature. For example, if A is a...

2019-03-21 14:54:25 207

原创 博弈问题入门-取球问题

import java.util.*;/*盒子里有n个小球,A、B两人轮流从盒中取球,每个人都可以看到另一个人取了多少个,也可以看到盒中还剩下多少个,并且两人都很聪明,不会做出错误的判断。我们约定:每个人从盒子中取出的球的数目必须是:n1,n2,n3……nr轮到某一方取球时不能弃权!A先取球,然后双方交替取球,直到取完,输入起始小球数,符合规定的数目个数,数目各是多少,输出A的胜...

2019-03-20 20:07:11 765

原创 Evaluate Division——LeetCode进阶路

原题链接https://leetcode.com/problems/evaluate-division/题目描述Equations are given in the format A / B = k, where A and B are variables represented as strings, and k is a real number (floating point numb...

2019-03-19 15:07:05 117

原创 JavaScript入门笔记day2

文章目录常用互动方法常用互动方法document.write() 直接向页面输出内容alert();弹出消息对话框

2019-03-18 16:50:41 182

原创 Number of Islands——LeetCode进阶路

原题链接https://leetcode.com/problems/number-of-islands/题目描述Given a 2d grid map of '1’s (land) and '0’s (water), count the number of islands. An island is surrounded by water and is formed by connecti...

2019-03-17 21:26:07 118

原创 Surrounded Regions——LeetCode进阶路

原题链接https://leetcode.com/problems/surrounded-regions/题目描述Given a 2D board containing ‘X’ and ‘O’ (the letter O), capture all regions surrounded by ‘X’.A region is captured by flipping all 'O’s in...

2019-03-15 21:06:57 151

原创 辗转相除法原理+实现

辗转相除法又名欧几里德算法。他是已知最古老的的算法哦~文章目录原理* 引入* 正题代码实现原理* 引入设有整数a,b,他们可以表示为:a = m1k+n1b = m2k+n2易得(a+b) % k= (m1k+m2k) % k + (n1+n2) % k= (n1+n2) % k由上式可得,对两数之和求余,对他们的和求余与分别求余在相加是没有啥区别的* 正题辗转相除...

2019-03-14 11:44:18 835

原创 Longest Consecutive Sequence——LeetCode进阶路

原题链接https://leetcode.com/problems/longest-consecutive-sequence/题目描述Given an unsorted array of integers, find the length of the longest consecutive elements sequence.Your algorithm should run in O...

2019-03-13 11:57:45 141

转载 idea的快捷配置2

https://blog.csdn.net/b644ROfP20z37485O35M/article/details/84207709#t3本文为方便自己日后再找啥的,如有不妥,还望指教//本文只有两个笔者觉得现在需要设的,更全面的快捷键见链接文章自动编译File→settings→Build,Execution,Deployment→Compiler→在Bulid project a...

2019-03-13 11:03:01 198

转载 win10安装git

下载地址https://git-scm.com/download

2019-03-12 20:56:15 979

原创 null 空 || 长度为0

基础差的报应集合为空null未分配内存,只是说有这么一个变量就像是赐你封号大将军,但是手上却半个兵符都没有。想打仗的话还是要先让“系统”这个君主给你兵符才OK集合长度为0系统分配内存,只是还没有元素而已不仅赐了你大将军的封号,还给了你个兵符,虽尚无小兵,但是可以纳人才入麾下...

2019-03-12 17:55:16 509 1

原创 css——慕课

2019-03-11 08:37:37 107

原创 京东首页html+css1.0

小菜鸟的学习记录,还望各位猿兄不吝赐教效果图源码HTML文件 <!DOCTYPE html><html> <head> <meta charset="utf-8"/> <title>京东(JD.COM)

2019-03-11 08:23:00 1763

原创 Elimination Game——LeetCode进阶路

原题链接https://leetcode.com/problems/elimination-game/题目描述There is a list of sorted integers from 1 to n. Starting from left to right, remove the first number and every other number afterward until y...

2019-03-09 20:17:55 158

原创 QQ会员首页HTML+CSS

作为一个穷人,唯一一次逛这么久的会员首页还是因为要写最头大的web~苦涩效果图# 源码<!DOCTYPE html><html> <head> <meta charset="utf-8"/> <link rel="icon&

2019-03-08 18:17:44 2995 2

原创 Merge Two Binary Trees——LeetCode进阶路

原题链接https://leetcode.com/problems/merge-two-binary-trees/题目描述Given two binary trees and imagine that when you put one of them to cover the other, some nodes of the two trees are overlapped while t...

2019-03-06 19:53:30 127

原创 462.Minimum Moves to Equal Array Elements II——LeetCode进阶路

原题链接https://leetcode.com/problems/minimum-moves-to-equal-array-elements-ii/题目描述Given a non-empty integer array, find the minimum number of moves required to make all array elements equal, where a ...

2019-03-05 16:27:01 124

原创 css基础

<!--学习链接http://www.w3school.com.cn/css3/index.asp-->笔记基础*css 层叠样式表 ①层叠 一层又一层 ②样式表 多个的属性和属性值 作用:将网页内容和显示样式进行分离,提高了显示效果*css与html的四种结合方式 (1)在每个html标签上面都有一个属性值style,以此把cs...

2019-03-04 08:59:50 134

原创 Third Maximum Number——LeetCode⑬

//原题链接https://leetcode.com/problems/third-maximum-number/题目描述 Given a non-empty array of integers, return the third maximum number in this array. If it does not exist, return the maximum number. Th...

2019-03-03 12:58:44 194

原创 HTML基础

笔记篇1.html的操作思想:网页中有很多数据,不同的数据可能需要不同的显示效果,这个时候需要使用标签把要操作的数 据据包起来(封装起来),通过修改标签的属性值实现标签内数据样式的变化,只需要改变容器的属性值,就可 以实现容器内数据样式的变化。 一个标签相当于一个容器,想要修改容器内数据的样式,只需要改变容器的属性值,就可以实现容器内数据样式 的变化2.文字标签...

2019-03-03 11:49:23 688

原创 jdk11.0.2下载安装-环境配置

下载 JDK下载地址https://www.oracle.com/technetwork/java/javase/downloads/index.html然后同意,选择自己适合的版本PS:1.zip的绿色版不用安装,不会提醒你一直升级,不要了就直接删掉,但是可能会缺少丢丢功能所以绿色版.zip还是安装版.exe自行选择啦2.x86是32位选择合适的路径,并记住或者copy下...

2019-03-01 12:31:00 14319 4

2009~2019年软件设计师历年真题及答案详解.zip

*19年大纲 *09-19答案及解析 *真题占比知识点分析 *准备攻略 下午掌握做题技巧https://blog.csdn.net/zhang_xinxiu/article/details/15498173 上午多刷题 建议在看书看视频之前,先刷两套题,熟悉考法套路

2019-11-11

空空如也

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

TA关注的人

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