自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

转载 前端页面刷新与跳转

a标签里面的刷新方式1、<a href="javascript:" onclick="history.go(-2); ">返回前两页</a>2、<a href="javascript:" onclick="self.location=document.referrer;">返回上一页并刷新</a>3、<a href="javascri...

2019-09-17 13:09:00 361

转载 算法面试4---栈、队列、优先队列

1 栈的基本使用例1:LeetCode 20。本题虽然为简单题目但却是很经典的一个问题,在这里因为各处讲解比较多此处直接给出代码:class Solution { public boolean isValid(String s) { Stack<Character> stack = new Stack<>(); ...

2019-09-17 11:08:00 55

转载 c# CryptoStream 类

转载于:https://www.cnblogs.com/fanweisheng/p/11530769.html

2019-09-16 22:43:00 1582

转载 c# BufferedStream 类

转载于:https://www.cnblogs.com/fanweisheng/p/11530764.html

2019-09-16 22:42:00 150

转载 算法面试3---链表

1 链表反转例1:LeetCode 206。本题虽然简单但却是众多公司的面试问题。反转前后的图示如下:在反转的过程中主要是依据指针之间的移动,如下图所示:class Solution { public ListNode reverseList(ListNode head) { ListNode prev = null; ...

2019-09-16 10:17:00 57

转载 c# MemoryStream 类

转载于:https://www.cnblogs.com/fanweisheng/p/11524829.html

2019-09-15 22:27:00 69

转载 c# FileStream 类构造函数

转载于:https://www.cnblogs.com/fanweisheng/p/11524787.html

2019-09-15 22:25:00 159

转载 c# Group类

转载于:https://www.cnblogs.com/fanweisheng/p/11524767.html

2019-09-15 22:24:00 299

转载 c# MatchCollection类

转载于:https://www.cnblogs.com/fanweisheng/p/11524699.html

2019-09-15 22:18:00 520

转载 c# Match类

转载于:https://www.cnblogs.com/fanweisheng/p/11524331.html

2019-09-15 21:21:00 429

转载 c# Regex类

转载于:https://www.cnblogs.com/fanweisheng/p/11524327.html

2019-09-15 21:20:00 47

转载 c# 正则表达式

转载于:https://www.cnblogs.com/fanweisheng/p/11524316.html

2019-09-15 21:19:00 43

转载 c# 日期和时间System.DateTime

转载于:https://www.cnblogs.com/fanweisheng/p/11524309.html

2019-09-15 21:18:00 311

转载 c# 格式化数据String.Format

转载于:https://www.cnblogs.com/fanweisheng/p/11524304.html

2019-09-15 21:17:00 44

转载 c# StringBuilder类

转载于:https://www.cnblogs.com/fanweisheng/p/11524296.html

2019-09-15 21:15:00 50

转载 c# 字符串修改

转载于:https://www.cnblogs.com/fanweisheng/p/11524290.html

2019-09-15 21:15:00 499

转载 c# 搜索字符串

转载于:https://www.cnblogs.com/fanweisheng/p/11524286.html

2019-09-15 21:14:00 570

转载 c# String类

转载于:https://www.cnblogs.com/fanweisheng/p/11520310.html

2019-09-14 21:17:00 87

转载 c# 比较字符串

转载于:https://www.cnblogs.com/fanweisheng/p/11520315.html

2019-09-14 21:17:00 44

转载 c# Unicode

转载于:https://www.cnblogs.com/fanweisheng/p/11520305.html

2019-09-14 21:16:00 76

转载 c# Dictionary<K,V>

转载于:https://www.cnblogs.com/fanweisheng/p/11517709.html

2019-09-13 21:28:00 90

转载 c# 使用泛型集合List<T>

转载于:https://www.cnblogs.com/fanweisheng/p/11517706.html

2019-09-13 21:27:00 87

转载 c# 泛型集合

转载于:https://www.cnblogs.com/fanweisheng/p/11517704.html

2019-09-13 21:26:00 96

转载 c# 类型安全

转载于:https://www.cnblogs.com/fanweisheng/p/11517701.html

2019-09-13 21:26:00 224

转载 c# IComparable与IComparer接口

转载于:https://www.cnblogs.com/fanweisheng/p/11517698.html

2019-09-13 21:25:00 68

转载 c# IEnumerable集合

转载于:https://www.cnblogs.com/fanweisheng/p/11517697.html

2019-09-13 21:24:00 293

转载 c# HashTable 类

转载于:https://www.cnblogs.com/fanweisheng/p/11517694.html

2019-09-13 21:23:00 80

转载 c# Stack 类

转载于:https://www.cnblogs.com/fanweisheng/p/11517692.html

2019-09-13 21:22:00 144

转载 c# Queue 类

转载于:https://www.cnblogs.com/fanweisheng/p/11517689.html

2019-09-13 21:22:00 104

转载 c# ArrayList 类

转载于:https://www.cnblogs.com/fanweisheng/p/11517688.html

2019-09-13 21:21:00 74

转载 c# System.Collections接口图

转载于:https://www.cnblogs.com/fanweisheng/p/11517685.html

2019-09-13 21:20:00 129

转载 c# System.Array

转载于:https://www.cnblogs.com/fanweisheng/p/11517682.html

2019-09-13 21:19:00 325

转载 c# 抽象工厂设计模式

转载于:https://www.cnblogs.com/fanweisheng/p/11517678.html

2019-09-13 21:18:00 53

转载 c# 简单工厂模式

转载于:https://www.cnblogs.com/fanweisheng/p/11517675.html

2019-09-13 21:17:00 46

转载 算法与数据结构学习3---

1转载于:https://www.cnblogs.com/youngao/p/11517184.html

2019-09-13 17:04:00 57

转载 c# 反射

转载于:https://www.cnblogs.com/fanweisheng/p/11515471.html

2019-09-12 22:39:00 46

转载 算法面试2---查找问题

1 综述查找问题可以分为两大类:(1)查找是否存在某一元素,此时常用的数据集合是set集合;(2)查找某一元素出现的频率,此时常用的数据集合是map集合。以LeetCode 349问题为例,注意说明中有一个不考虑输出结果的顺序,那么利用set集合就可以了。在解决具体问题时,可以具体考虑一些情况来优化代码:class Solution { public int[]...

2019-09-11 16:34:00 129

转载 c# 处理串行化对象的版本变化

转载于:https://www.cnblogs.com/fanweisheng/p/11503208.html

2019-09-10 21:51:00 61

转载 c# 串行化事件

转载于:https://www.cnblogs.com/fanweisheng/p/11503194.html

2019-09-10 21:49:00 86

转载 c# 使用序列化

转载于:https://www.cnblogs.com/fanweisheng/p/11503188.html

2019-09-10 21:48:00 41

空空如也

空空如也

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

TA关注的人

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