03 2019 档案

摘要:以下内容输入笔记,并非总结 为什么要学习汇编语言 在根本上认识、理解计算机的工作过程在计算机系统中,一些功能必须使用汇编语言的程序来实现 eg : 系统初始化,机器的自检 计算机程序设计语言 共有机器语言,高级语言,汇编语言 1.机器语言:顾名思义,也就是机器能够识别的语言 把控制计算机的命令和各种 阅读全文
posted @ 2019-03-31 21:04 Moliay 阅读(19) 评论(0) 推荐(0) 编辑
摘要:本次安装笔者借鉴了n篇前辈的文章,如有冒犯,请指正 https://blog.csdn.net/qq_20788055/article/details/80372577 https://blog.csdn.net/qq_37172528/article/details/80459490 https: 阅读全文
posted @ 2019-03-31 13:06 Moliay 阅读(24) 评论(0) 推荐(0) 编辑
摘要:原题链接https://leetcode.com/problems/number-of-atoms/ 题目描述 Given a chemical formula (given as a string), return the count of each atom. An atomic element 阅读全文
posted @ 2019-03-30 09:41 Moliay 阅读(13) 评论(0) 推荐(0) 编辑
摘要:给定一个数列 1 1 1 3 5 9 17……,这个数列第四项开始等于前三项的和,让你求出第20190324项的最后四位数。 package BlueCup; public class Main { public static void main(String[] args) { long res 阅读全文
posted @ 2019-03-29 19:46 Moliay 阅读(10) 评论(0) 推荐(0) 编辑
摘要:原题链接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 p 阅读全文
posted @ 2019-03-28 15:34 Moliay 阅读(16) 评论(0) 推荐(0) 编辑
摘要:文章目录 一. DOSBox && debug使用1.安装配置(以下方法们按照从麻烦到简便的顺序)(1) 多步骤(可行,但不推荐)(2)一步到位(强烈推荐) 2. 窗口大小 二. debug两种状态三.debug命令及操作? :查看文档A :逐步汇编1.不给地址的话,默认为0101或者当前的IP地址 阅读全文
posted @ 2019-03-25 21:05 Moliay 阅读(1076) 评论(0) 推荐(0) 编辑
摘要:原题链接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 阅读全文
posted @ 2019-03-25 15:38 Moliay 阅读(2) 评论(0) 推荐(0) 编辑
摘要:文章目录 啥是JavaScriptJavaScript与HTML的结合方式js文件在HTML中的位置注释方式变量命名规范:定义的关键字 To be a struggling Rick for everything~ 啥是JavaScript 题外话,JavaScript并非java的简版,这在核心技 阅读全文
posted @ 2019-03-25 08:04 Moliay 阅读(9) 评论(0) 推荐(0) 编辑
摘要:原题链接https://leetcode.com/problems/redundant-connection/ 题目描述 In this problem, a tree is an undirected graph that is connected and has no cycles. The g 阅读全文
posted @ 2019-03-23 21:31 Moliay 阅读(8) 评论(0) 推荐(0) 编辑
摘要:异常描述:大概看到这个鬼样子…… 打开tomcat解压后文件: conf -> logging.properties右键,选择以记事本或其他方式打开(只要能修改文件内容的软件都OK)找到 java.util.logging.ConsoleHandler.encoding = UTF-8 把UTF-8 阅读全文
posted @ 2019-03-22 12:17 Moliay 阅读(8) 评论(0) 推荐(0) 编辑
摘要:原题链接https://leetcode.com/problems/friend-circles/ 题目描述 There are N students in a class. Some of them are friends, while some are not. Their friendship 阅读全文
posted @ 2019-03-21 14:54 Moliay 阅读(13) 评论(0) 推荐(0) 编辑
摘要:import java.util.*; /* 盒子里有n个小球,A、B两人轮流从盒中取球,每个人都可以看到另一个人取了多少个,也可以看到盒中还剩下多少个, 并且两人都很聪明,不会做出错误的判断。 我们约定: 每个人从盒子中取出的球的数目必须是:n1,n2,n3……nr 轮到某一方取球时不能弃权! A 阅读全文
posted @ 2019-03-20 20:07 Moliay 阅读(39) 评论(0) 推荐(0) 编辑
摘要:原题链接https://leetcode.com/problems/evaluate-division/ 题目描述 Equations are given in the format A / B = k, where A and B are variables represented as stri 阅读全文
posted @ 2019-03-19 15:07 Moliay 阅读(14) 评论(0) 推荐(0) 编辑
摘要:文章目录 常用互动方法1. document.write() 直接向页面输出内容2. `alert();`弹出消息对话框3. confirm消息对话框4. prompt弹出消息对话框,用于需要与用户进行交互的情形5. window.open();打开新窗口6.window.close()关闭窗口 D 阅读全文
posted @ 2019-03-18 16:50 Moliay 阅读(14) 评论(0) 推荐(0) 编辑
摘要:原题链接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 阅读全文
posted @ 2019-03-17 21:26 Moliay 阅读(9) 评论(0) 推荐(0) 编辑
摘要:原题链接https://leetcode.com/problems/surrounded-regions/ 题目描述 Given a 2D board containing ‘X’ and ‘O’ (the letter O), capture all regions surrounded by ‘ 阅读全文
posted @ 2019-03-15 21:06 Moliay 阅读(10) 评论(0) 推荐(0) 编辑
摘要:辗转相除法又名欧几里德算法。 他是已知最古老的的算法哦~ 文章目录 原理* 引入* 正题 代码实现 原理 * 引入 设有整数a,b,他们可以表示为: a = m1k+n1 b = m2k+n2 易得 (a+b) % k = (m1k+m2k) % k + (n1+n2) % k = (n1+n2) 阅读全文
posted @ 2019-03-14 11:44 Moliay 阅读(179) 评论(0) 推荐(0) 编辑
摘要:原题链接https://leetcode.com/problems/longest-consecutive-sequence/ 题目描述 Given an unsorted array of integers, find the length of the longest consecutive e 阅读全文
posted @ 2019-03-13 11:57 Moliay 阅读(8) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/b644ROfP20z37485O35M/article/details/84207709#t3 本文为方便自己日后再找啥的,如有不妥,还望指教 //本文只有两个快捷配置,笔者觉得现在需要设的,更全面的快捷键见链接文章 自动编译 File→settings 阅读全文
posted @ 2019-03-13 11:03 Moliay 阅读(9) 评论(0) 推荐(0) 编辑
摘要:下载地址https://git-scm.com/download 然后一路默认,除了路径修改,以及图标的有无(见下图),其余一路默认就好 查看说明view release notes看君心情咯~ https://www.cnblogs.com/xiaoliu66/p/9404963.html大神的详 阅读全文
posted @ 2019-03-12 20:56 Moliay 阅读(7) 评论(0) 推荐(0) 编辑
摘要:基础差的报应 集合为空null 未分配内存,只是说有这么一个变量 就像是赐你封号大将军,但是手上却半个兵符都没有。想打仗的话还是要先让“系统”这个君主给你兵符才OK 集合长度为0 系统分配内存,只是还没有元素而已 不仅赐了你大将军的封号,还给了你个兵符,虽尚无小兵,但是可以纳人才入麾下 阅读全文
posted @ 2019-03-12 17:55 Moliay 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-03-11 08:37 Moliay 阅读(11) 评论(0) 推荐(0) 编辑
摘要:小菜鸟的学习记录,还望各位猿兄不吝赐教 文章目录 效果图源码HTML文件css文件 效果图 源码 HTML文件 <!DOCTYPE html> <html> <head> <meta charset="utf-8"/> <title>京东(JD.COM)盗版高价</title> <link rel= 阅读全文
posted @ 2019-03-11 08:23 Moliay 阅读(54) 评论(0) 推荐(0) 编辑
摘要:原题链接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 阅读全文
posted @ 2019-03-09 20:17 Moliay 阅读(21) 评论(0) 推荐(0) 编辑
摘要:作为一个穷人,唯一一次逛这么久的会员首页还是因为要写最头大的web~苦涩 效果图 源码 <!DOCTYPE html> <html> <head> <meta charset="utf-8"/> <link rel="icon" href="qqIcon.jfif" type="image/x-ic 阅读全文
posted @ 2019-03-08 18:17 Moliay 阅读(38) 评论(0) 推荐(0) 编辑
摘要:原题链接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, so 阅读全文
posted @ 2019-03-06 19:53 Moliay 阅读(0) 评论(0) 推荐(0) 编辑
摘要:原题链接https://leetcode.com/problems/minimum-moves-to-equal-array-elements-ii/ 题目描述 Given a non-empty integer array, find the minimum number of moves req 阅读全文
posted @ 2019-03-05 16:27 Moliay 阅读(12) 评论(0) 推荐(0) 编辑
摘要:<!--学习链接http://www.w3school.com.cn/css3/index.asp--> 笔记基础 *css 层叠样式表 ①层叠 一层又一层 ②样式表 多个的属性和属性值 作用:将网页内容和显示样式进行分离,提高了显示效果 *css与html的四种结合方式 (1)在每个html标签上 阅读全文
posted @ 2019-03-04 08:59 Moliay 阅读(9) 评论(0) 推荐(0) 编辑
摘要://原题链接https://leetcode.com/problems/third-maximum-number/ 题目描述 Given a non-empty array of integers, return the third maximum number in this array. If 阅读全文
posted @ 2019-03-03 12:58 Moliay 阅读(8) 评论(0) 推荐(0) 编辑
摘要:笔记篇 1.html的操作思想:网页中有很多数据,不同的数据可能需要不同的显示效果,这个时候需要使用标签把要操作的数 据据包起来(封装起来),通过修改标签的属性值实现标签内数据样式的变化,只需要改变容器的属性值,就可 以实现容器内数据样式的变化。 一个标签相当于一个容器,想要修改容器内数据的样式,只 阅读全文
posted @ 2019-03-03 11:49 Moliay 阅读(16) 评论(0) 推荐(0) 编辑
摘要:下载 JDK下载地址https://www.oracle.com/technetwork/java/javase/downloads/index.html 然后同意,选择自己适合的版本 PS: 1.zip的绿色版不用安装,不会提醒你一直升级,不要了就直接删掉,但是可能会缺少丢丢功能 所以绿色版.zi 阅读全文
posted @ 2019-03-01 12:31 Moliay 阅读(402) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示