自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 系统架构师准备大纲

软考高级系统架构师

2022-09-11 19:49:24 111

原创 Leetcode Top 100 11-20

21 Valid Parentheses 一次遍历,为左括号的存入stack中

2021-01-24 16:40:25 79 1

原创 Leetcode Top 100 1-10

1 two sum 2 Add Two Numbers 3 Longest Substring without Repeating Characters 4 Median of Two Sorted Arrays 5 Longest Palindromic Substring

2021-01-24 13:51:12 89

原创 c++单例模式

单例模式 恶汉式 #include <bits/stdc++.h> using namespace std; class Singleton{ private: Singleton() = default; Singleton(const Singleton& other) = default; public: static Singleton* getInstance(); static Singleton* m_instance; int

2020-10-31 17:47:50 108

原创 leetcode_树

2020-09-04 01:32:59 87

转载 arg min,arg mx

arg &nbsp; &nbsp;是变元(即自变量argument)的英文缩写。 arg min 就是使后面这个式子达到最小值时的变量的取值 arg max 就是使后面这个式子达到最大值时的变量的取值 例如 函数F(x,y): arg &nbsp;min F(x,y)就是指当F(x,y)取得最小值时,变量x,y的取值 arg &nbsp;max F(x,y)就是指当F(x,y)取得最大值时,变量x...

2018-12-26 19:45:57 193

空空如也

空空如也

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

TA关注的人

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