自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

小页睡着了的博客

算法能力的进步不是一天两天就可以实现的!!!

  • 博客(16)
  • 资源 (6)
  • 收藏
  • 关注

原创 VSCode将Java文件编译生成的class文件存在哪的?

记录一下,有问题欢迎指正^_^默认存储在:C:\Users{your_name}\AppData\Roaming\Code\User\workspaceStorage这个文件夹下会创建项目对应的文件夹。比如我的某个项目的java文件对应class文件的全路径是:C:\Users\xxx\AppData\Roaming\Code\User\workspaceStorage\795d4...

2019-05-17 19:28:04 13613 8

原创 LeetCode 1019. Next Greater Node In Linked List

1019. Next Greater Node In Linked List题目描述Examples:Notes:Code1.2.用stack题目描述传送门We are given a linked list with head as the first node. Let’s number the nodes in the list: node_1, node_2, node_3, …...

2019-04-01 20:36:48 595

原创 LeetCode 1017.Convert to Base -2

1017.Convert to Base -2题目描述Examples:Note:Code1.2.递归方法3.更通用的方法题目描述传送门Given a number N, return a string consisting of "0"s and "1"s that represents its value in base -2 (negative two).The returned ...

2019-04-01 19:38:41 293

原创 Leetcode 1021. Best Sightseeing Pair.

题目描述Given an array A of positive integers, A[i] represents the value of the i-th sightseeing spot, and two sightseeing spots i and j have distance j - i between them.The score of a pair (i < j) ...

2019-03-24 15:53:10 259

原创 Leetcode 1022.Smallest Integer Divisible by K.

题目描述(传送门)Given a positive integer K, you need find the smallest positive integer N such that N is divisible by K, and N only contains the digit 1.Return the length of N. If there is no such N, ret...

2019-03-24 14:48:07 228

原创 Leetcode 1014. Capacity To Ship Packages Within D Days

题目描述(传送门)A conveyor belt has packages that must be shipped from one port to another within D days.The i-th package on the conveyor belt has a weight of weights[i]. Each day, we load the ship with ...

2019-03-22 15:07:36 158

原创 Leetcode 1013. Pairs of Songs With Total Durations Divisible by 60

题目描述(传送门)In a list of songs, the i-th song has a duration of time[i] seconds.Return the number of pairs of songs for which their total duration in seconds is divisible by 60. Formally, we want the...

2019-03-22 10:39:34 130

原创 Leetcode 1012.Complement of Base 10 Integer

题目描述Every non-negative integer N has a binary representation. For example, 5 can be represented as “101” in binary, 11 as “1011” in binary, and so on. Note that except for N = 0, there are no lead...

2019-03-22 10:09:21 139

原创 Leetcode 1015.Numbers With Repeated Digits. Java代码

题目描述Given a positive integer N, return the number of positive integers less than or equal to N that have at least 1 repeated digit.Example 1:Input: 20Output: 1Explanation: The only positive nu...

2019-03-20 15:25:30 178

转载 Docker守护进程,修改配置文件/etc/default/docker不生效的解决方案

文件地址:/lib/systemd/system/docker.servicehttps://blog.csdn.net/zz_15127160921/article/details/80408644

2019-03-06 22:11:40 1036

原创 String.intern()详细分析,JDK1.8

前言  本文的测试环境是JDK1.8。  String.intern()分析在文中偏后一.创建字符串分析1.直接使用双引号创建字符串 判断这个常量是否存在于常量池,  如果存在,   判断这个常量是存在的引用还是常量,    如果是引用,返回引用地址指向的堆空间对象,    如果是常量,则直接返回常量池常量,  如果不存在,    在常量池中创建该常量,并返回此常量 ...

2018-11-01 12:19:13 15883 40

原创 Linux状态码

Linux 状态码#define EPERM 1 /* Operation not permitted /#define ENOENT 2 / No such file or directory /#define ESRCH 3 / No such process /#define EINTR 4 / Interrupted system call /#define EI...

2018-10-18 15:51:10 817

原创 ubuntu nautilus 占用CPU很高

ubuntu nautilus 占用CPU很高系统是ubuntu 16.04不知道从什么时候开始,nautilus无缘无故占用CPU内存很高,导致电脑经常卡。网上说是Templates文件夹里面东西太多,清一下就行,但是我的文件夹下根本没有文件。最终,google到解决方案: 链接:https://bugs.launchpad.net/ubuntu/+source/...

2018-07-02 10:22:03 4578 4

原创 JavaScript中的上溢、下溢和被零整除

JavaScript中的算术运算在上溢、下溢和被零整除时不会报错。上溢:运算结果超出了JavaScript所能表示的数字上限(1.7976931348623157e+308),结果是无穷大(Infinity);同理,当负数的值超出了范围,结果是负无穷大(-Infinity)。下溢:运算结果无限接近于零,或者比JavaScript所能表示的最小值(5e-324)还小时,发生下

2016-07-28 09:54:59 1435

原创 php编程中require和include多层嵌套导致文件找不到的错误

php中include和require可以包含其他文件但常引入的是一个相对路径如此会产生一个文件,如下:例如:(网站根目录)├文件夹A│ ││ └1.php├文件夹B│ ││ └2.php└index.php当在1.php中通过include(“../B/2.php”)来引入B目录下的2.php文件;在index.php中通过incl

2016-04-28 09:19:38 1557

转载 mysql创建table时出错 ERROR 1067 (42000): Invalid default value for ' '

今天在建MySQL的table时遇到一个问题,大致如下:我在建表时default值为中文,报错信息是ERROR 1067 (42000): Invalid default value for ' '后来在网上找到了解决方法:SET NAMES GBK;并且CREATE TABLE的末尾加上charset='utf8';像下面这样CREATE TA

2016-03-30 22:34:48 21165 1

毕业答辩PPT模板.zip

毕业季,论文答辩PPT模板,包含十个模板,简约大气风格,基本满足需求。免积分,免费分享给大家,攒攒人品。

2020-03-07

数据库系统概念第六版.zip+教学数据库(大学数据库)+data

数据库系统概念中文第六版,另外包括其中的教学数据库的SQL脚本以及对应的data脚本。其中大学教学数据库脚本是从https://download.csdn.net/download/qq_34269675/10007944这里下载的,并修改了一点脚本,在我的电脑可以运行。

2019-05-21

windows动态链接文件

msvcp120d.dll和msvcr120d.dll,windows系统下的动态连接库,一些应用程序必须的依赖

2018-05-17

msvcp120d.dll

msvcp120d.dll,windows系统下的动态连接库,一些应用程序必须的依赖

2018-05-17

cpuid.h文件下载

glibc编译过程中的文件之一,下载后将其copy到/usr/lib下,重新编译glibc

2018-04-11

activemq-all-5.12.1.jar

中间件Apache ActiveMQ 5.12.1 的jar资源包

2015-10-27

空空如也

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

TA关注的人

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