自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(19)
  • 问答 (2)
  • 收藏
  • 关注

原创 微信小程序开发

微信小程序开发出现的bug

2022-03-09 15:57:59 942 1

原创 LeetCode初级算法篇

前言为秋招做的准备:从7月份中旬开始刷算法,拢共刷了100多道(我知道很少!书写出来以便激励自己!!!),此篇为初级算法;注意!!!!!根据CSDN以及博客园大佬的题解增加自己的见解,不做商用,只为自己学习用!!若路过大佬发现您的题解帮助我解题,但是不允许转载(应该也不算,因为这是鄙人自己拙劣的解析,比不上大佬的题解),请大佬联系我,我马上删除!!!此处为初级算法入口数组删除排序数组中的重复项class Solution { public int removeDuplicates(in

2021-10-14 15:51:01 169

原创 使用nacos框架进行服务发现与配置管理时,启动SpringBoot出错!

使用nacos框架进行服务发现与配置管理时,启动SpringBoot出错!什么个出错法???就是在向nacos提交服务的时候,在bootstrap.yml配置spring:cloud:namespace时,提交的id异常。Description:Failed to bind properties under 'spring.http.encoding.charset' to java.nio.charset.Charset: Property: spring.http.encoding.

2021-08-10 21:21:01 610 1

原创 python爬虫——爬取搜狗影视热门电视剧

python爬虫——爬取搜狗影视热门电视剧1.结果图2.这次爬取的网址请点击传送门搜狗影视热门电视剧3.先构建请求头,请求头直接复制过来4.接下来先请求这条url,通过format方法实现对url的拼接,以达到翻页的效果,通过查看接口内容,发现是js格式,热门电视剧的信息存储在’class’:'add-list-1’中5.将数据存储为文件(json/xls)1.worksheet.write(0,i,title[i])中—0表示行—i表示列—title[i]表示写入的内容6.完

2020-12-21 22:16:16 1524 1

原创 寒假训练(七) problem I (错排算法)

Time limit 1000 msMemory limit 32768 kBOS Windows Source递推求解专题练习(For Beginner)I - 9 HDU - 2049Problem Description:国庆期间,省城HZ刚刚举行了一场盛大的集体婚礼,为了使婚礼进行的丰富一些,司仪临时想出了有一个有意思的节目,叫做"考新郎",具体的操作是这样的:首先,给每位新...

2019-01-29 17:50:52 116

原创 寒假训练(九) problem H (贪心算法)

Time limit 1000 msOS LinuxProblem Description:In a city there are n bus drivers. Also there are n morning bus routes and n afternoon bus routes withvarious lengths. Each driver is assigned one mor...

2019-01-29 17:17:25 200

原创 寒假训练(十一) problem I (最短路径算法)

Time limit 1000 msMemory limit 65536 kBOS LinuxSource Ulm Local 1997Problem Description:Freddy Frog is sitting on a stone in the middle of a lake. Suddenly he notices Fiona Frog who is sitting on...

2019-01-29 15:35:36 253

原创 寒假训练(五) problem I (欧几里得算法)

Time limit 1000 msMemory limit 32768 kBOS WindowsSource HDU 2007-1 Programming ContestProblem Description:要求(A/B)%9973,但由于A很大,我们只给出n(n=A%9973)(我们给定的A必能被B整除,且gcd(B,9973) = 1)。Input数据的第一行是一个T,表示有...

2019-01-28 23:21:42 163

原创 寒假训练(三)problem J (并查集)

Time limit 1000 msMemory limit 20000 kBOS LinuxSource Asia Kaohsiung 2003Problem Description:Severe acute respiratory syndrome (SARS), an atypical pneumonia of unknown aetiology, was recognized a...

2019-01-28 18:21:20 144

原创 寒假训练(四) problem I (高精度运算)

Time limit 3000 msOS LinuxProblem Description:One of the first users of BIT’s new supercomputer was Chip Diller. He extended his exploration ofpowers of 3 to go from 0 to 333 and he explored takin...

2019-01-26 22:32:07 237

原创 寒假训练(十)problem G (并查集)

Time limit 1000 msMemory limit 32768 kBOS WindowsProblem Description:Today is Ignatius’ birthday. He invites a lot of friends. Now it’s dinner time. Ignatius wants to know how many tables he needs...

2019-01-26 21:39:07 131

原创 Match three[B problem ]

Time limit 1000 msMemory limit 262144 kBSource Codeforces Round #280 (Div. 2)Tags implementation *900Editorial AnnouncementProblem Description:Vanya got n cubes. He decided to build a pyramid fr...

2018-12-24 22:43:08 89

原创 Match two[C problem ]

Time limit: 1000 msMemory limit: 32768 kBOS: WindowsSource:递推求解专题练习(For Beginner)Problem Description:在2×n的一个长方形方格中,用一个1× 2的骨牌铺满方格,输入n ,输出铺放方案的总数.例如n=3时,为2× 3方格,骨牌的铺放方案有三种,如下图:Input输入数据由多行组成,每...

2018-12-19 19:24:08 133

原创 Match two[B problem ]

Time limit 1000 msMemory limit 32768 kBOS WindowsSource 递推求解专题练习(For Beginner)Problem Description:有一只经过训练的蜜蜂只能爬向右侧相邻的蜂房,不能反向爬行。请编程计算蜜蜂从蜂房a爬到蜂房b的可能路线数。其中,蜂房的结构如下所示。Input输入数据的第一行是一个整数N,表示测试实例的个...

2018-12-19 19:13:23 108

原创 Match two[A problem ]

Time limit: 1000 msMemory limit: 262144 kBSource :Codeforces Beta Round #1Tags: math *1300Editorial: Announcement Tutorial #1 Tutorial #2Problem Description:Theatre Square in the capital city of...

2018-12-18 23:47:13 89

原创 practice second[5]

Time Limit: 2000/1000 MS(Java/Others)Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 265533Accepted Submission(s): 74523Problem Description:春天是鲜花的季节,水仙花就是其中最迷人的代表,数学上有个水仙花数,他是这样定义的...

2018-12-13 22:08:18 101

原创 match one[D problem]

Time limit:1000 msMemory limit:32768 kBOS:WindowsProblem Description:给定三条边,请你判断一下能不能组成一个三角形。Input:输入数据第一行包含一个数M,接下有M行,每行一个实例,包含三个正数A,B,C。其中A,B,C <1000;Output:对于每个测试实例,如果三条边长A,B,C能组成三角形的话,输出...

2018-12-09 16:17:28 140

原创 match one[A problem]

Time limit:1000 msMemory limit:65536 kBProblem Description:One hot summer day Pete and his friend Billy decided to buy a watermelon. They chose the biggest and the ripest one, in their opinion. Aft...

2018-12-09 15:54:58 92

原创 A + B Problem

Time limit:1000 msMemory limit:32768 kBOS:WindowsProblem Description:Calculate A + B.Input:Each line will contain two integers A and B. Process to end of file.Output:For each case, output A + ...

2018-12-07 16:16:04 128

空空如也

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

TA关注的人

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