自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 LeeCode-70 爬楼梯

public class Solution { public int climbStairs(int n) { if (n == 1) { return 1; } int[] dp = new int[n + 1]; dp[1] = 1; dp[2] = 2; for (...

2020-04-14 19:30:11 111

原创 MySql 没删干净时重装MySql

今天不小心把我D盘的tool文件夹里的文件全删光了,哭死,之前下载的MySQL也未幸免,但是并没有删干净,所有重装MySQL时会显示该服务已存在,于是我先尝试完全删除MySQL再重装删除MySQL1.怎么看MySQL有没有删干净呢运行cmd,输入 sc query mysql,若出来一行表,说明MySQL并没有删干净再输入sc delete mysql删除MySQL服务2.删除...

2020-04-04 13:06:37 3685

原创 LeetCode-58. Length of Last Word

Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word (last word means the last appearing word if we loop from left to right) in the st...

2020-03-22 11:40:27 155

原创 LeeCode-53. Maximum Subarray

Given an integer array nums, find the contiguous subarray(containing at least one number) which has the largest sum and return its sum.1. first we need to define sum as the maximum at present. t...

2020-03-22 10:50:38 126

原创 免安装版Mysql 调试总结

1.解压后在根目录新建my.ini文件,复制以下代码[mysqld]basedir ="D:\\tools\mysql-8.0.19-winx64" \\修改成自己的安装目录datadir ="D:\\tools\mysql-8.0.19-winx64\data"port=3306server_id =10character-set-server=gbkcharacter_set_...

2020-03-08 10:19:25 132

原创 LeetCode-28 实现strStr() KMP算法

class Solution { public int strStr(String haystack, String needle) { if(needle.equals("")) { return 0; } if(haystack.equals("")) { return -1; ...

2020-02-28 19:22:15 158

原创 输入n,输出对应的边长为n的空心正六边形。 为方便看图,样例中点 '.' 表示空格,打印图形时请打印空格而非小圆点。

#includeusing namespace std;int main(){int n,i,j,t;while(cin>>n){for(i=0;icoutfor(i=0;icoutcoutt=1;for(i=1;ifor(j=0;jcoutcoutfor(j=0;jcoutcoutif(i>=n-1)t--;el

2017-04-04 22:28:36 4147

空空如也

空空如也

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

TA关注的人

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