自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

我的英文站点:https://iorilan.medium.com/

编码要踏实 架构要落地

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

原创 LeetCode -- Permutations

LeetCode -- Permutations

2015-09-25 11:49:21 1668 1

原创 LeetCode -- Longest Valid Parentheses

LeetCode -- Longest Valid Parentheses

2015-09-25 11:47:05 1488

原创 LeetCode -- Insert Interval

LeetCode -- Insert Interval

2015-09-25 11:45:29 1440 1

原创 LeetCode -- Convert SortedList To BST

Convert SortedList To BST

2015-09-25 11:43:39 1569

原创 LeetCode -- Sort Colors

LeetCode -- Sort Colors

2015-09-22 09:56:47 1334

原创 LeetCode -- Search Matrix

LeetCode -- Search Matrix

2015-09-22 09:53:02 1836

原创 LeetCode -- Next Permutation

LeetCode -- Next Permutation

2015-09-22 09:51:43 1287

原创 LeetCode -- Course Schedule II

LeetCode -- Course Schedule II

2015-09-22 09:50:39 1455

原创 LeetCode -- Binary Tree Level Order Traversal

LeetCode -- Binary Tree Level Order Traversal

2015-09-22 09:49:49 1217

原创 LeetCode -- Basic Caculator

LeetCode -- Basic Caculator

2015-09-22 09:48:41 1309

原创 使用C# 与Xero OAuth 交互 集成

使用C# 与Xero OAuth 交互 集成

2015-09-19 20:45:31 2137

原创 LeetCode -- Reverse Linked List

LeetCode -- Reverse Linked List

2015-09-19 16:23:06 1304 2

原创 LeetCode -- Reverse Integer

LeetCode -- Reverse Integer

2015-09-19 16:22:21 1155

原创 LeetCode -- Remove Nth Node From End of List

LeetCode -- Remove Nth Node From End of List

2015-09-19 16:21:15 1194

原创 LeetCode -- Remove Duplicates from Sorted List

LeetCode -- Remove Duplicates from Sorted List

2015-09-19 16:20:30 1212

原创 LeetCode -- Perfect Squares

LeetCode -- Perfect Squares

2015-09-19 16:18:57 1494

原创 LeetCode -- Fraction to Recurring Decimal

LeetCode -- Fraction to Recurring Decimal

2015-09-19 16:17:58 1259

原创 LeetCode -- Excel Sheet Column Number

LeetCode -- Excel Sheet Column Number

2015-09-19 16:16:54 1219

原创 LeetCode -- Different Ways to Add Parentheses

LeetCode -- Different Ways to Add Parentheses

2015-09-19 16:15:47 1293

原创 LeetCode -- Count Digit One

LeetCode -- Count Digit One

2015-09-19 16:13:26 1403

原创 LeetCode -- Binary Tree Right Side View

LeetCode -- Binary Tree Right Side View

2015-09-19 16:12:18 1055

原创 LeetCode -- Binary Tree Inorder Traversal

LeetCode -- Binary Tree Inorder Traversal中序遍历

2015-09-19 16:10:36 1149

原创 LeetCode -- Add Digits

题目描述:Given a non-negative integer num, repeatedly add all its digits until the result has only one digit.For example:Given num = 38, the process is like: 3 + 8 = 11, 1 + 1 = 2. Since 2 has only one di

2015-09-13 22:44:21 1419

原创 LeetCode -- Implement strStr()

LeetCode -- Implement strStr()

2015-09-13 22:40:40 1555

原创 LeetCode -- Longest Substring Without Repeating Characters

题目描述:Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for "abcabcbb" is "abc", which the length is 3.

2015-09-13 22:20:01 1443

原创 有关微软技术方向的最新学习资源【2015-9月】

有关微软技术方向的最新学习资源【2015-9月】

2015-09-13 22:01:43 1720

原创 LeetCode -- Implement Queue using Stacks

LeetCode -- Implement Queue using Stacks

2015-09-11 21:40:39 1426

原创 LeetCode -- Compare Version Numbers

题目描述:compare two version numbers version1 and version2.If version1 > version2 return 1, if version1 You may assume that the version strings are non-empty and contain only digits and the . character.Th

2015-09-11 21:38:10 1363

原创 LeetCode -- Binary Tree Zigzag Level Order Traversal

题目描述:Given a binary tree, return the zigzag level order traversal of its nodes' values. (ie, from left to right, then right to left for the next level and alternate between).For example:Given binary t

2015-09-11 21:33:57 1304

原创 LeetCode -- Merge Two sorted lists

LeetCode -- Merge Two sorted lists

2015-09-07 09:50:07 1254

原创 LeetCode -- Balanced Binary Tree

题目描述:Given a binary tree, determine if it is height-balanced.For this problem, a height-balanced binary tree is defined as a binary tree in which the depth of the two subtrees of every node never diff

2015-09-05 17:40:15 1627

原创 LeetCode -- Isomorphic Strings

LeetCode -- Isomorphic Strings

2015-09-05 17:10:49 1966

原创 LeetCode -- Count Complete Tree Node

LeetCode -- Count Complete Tree Node

2015-09-04 19:18:10 1622

原创 Azure 证书配置错误: The service configuration file does not provide the certificate identification

Azure 证书错误: The service configuration file does not provide the certificate identification information for certificate XXXX in role XXX因为在配置证书时手动改的xml配置文件,结果参照官方文档:https://msdn.microsoft.com/en-us/lib

2015-09-02 12:49:45 1913

原创 LeetCode -- WordBreak II

题目描述:Given a string s and a dictionary of words dict, add spaces in s to construct a sentence where each word is a valid dictionary word.Return all such possible sentences.For example, givens = "catsa

2015-09-01 15:04:03 1579 1

原创 LeetCode -- SpiralOrder

题目描述:Given a matrix of m x n elements (m rows, n columns), return all elements of the matrix in spiral order.For example,Given the following matrix:[ [ 1, 2, 3 ], [ 4, 5, 6 ], [ 7, 8, 9 ]]You should r

2015-09-01 13:29:29 1580 1

锋利的jquery PDF带书签目录完整版

《锋利的jQuery》高清扫描PDF带书签目录完整版+源码,特此分享,学习愉快!

2011-05-23

java 多线程下载 (单文件)

演示了JAVA中的多线程 界面简单 需要请拿去

2009-06-12

socket 通信 简单示例

演示了socket在C#中的基本用法,初学者拿去

2009-06-12

J2ME 小游戏(多线程操作示例)

多线程实现的,原理很简单,这个游戏只是多线程的一个示例,没有多大的娱乐功能,学习J2ME的新手可以拿去~~

2009-04-13

《编译原理与实践》(孙悦红)答案

前一段给这本书的作者发了个邮件~感觉做作业困难,想要答案~没过两天这个作者就给我发来了~好作者~~拿来跟大家分享一下~有需要的拿去~

2009-04-13

C# 简单的聊天程序

c#写的 适合初学者,我也是刚接触SOCKET通信,拿出来给SOCKET初学者分享一下 。

2009-03-28

空空如也

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

TA关注的人

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