自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(171)
  • 资源 (3)
  • 收藏
  • 关注

原创 hack网址

http://www.phrack.org/国外逆向网址http://www.openrce.org/about/

2019-02-12 08:41:34 96705

原创 数据科学牛逼的网站

http://www.dscademy.com/

2018-10-24 12:01:19 619

原创 MIT 科技趋势查看网站

https://www.technologyreview.com/

2018-10-21 09:31:11 371

原创 学习深度学习的好网站

http://deeplearning.net/tutorial/contents.html

2018-10-17 08:52:20 508

原创 209. Minimum Size Subarray Sum

Explore Problems Mock  Contest Articles Discuss  Store  Premium    743 48 209. Minimum Size Subarray SumDescriptionHintsSubmissionsDiscussSolutionPick OneGiven an array o...

2018-10-13 12:14:17 257

原创 95. Unique Binary Search Trees II

LeetCodeExploreProblemsMock ContestArticlesDiscuss Store PremiumNew Playgroundlifeqiuzhi520 752 7595. Unique Binary Search Trees IIDescriptionHintsSubmissionsDiscussSolutionPick OneG...

2018-10-03 18:35:31 281

原创 89. Gray Code

class Solution { public List<Integer> grayCode(int n) { List<Integer> list = new ArrayList<Integer>(); for(int i = 0;i <1<<n;i++){ ...

2018-10-02 20:36:29 125

原创 87. Scramble String

LeetCodeExploreProblemsMock ContestArticlesDiscuss Store PremiumNew Playgroundlifeqiuzhi520 180 29787. Scramble StringDescriptionHintsSubmissionsDiscussSolutionYou have no submission ...

2018-10-02 15:50:28 178

原创 86. Partition List

Given a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x.You should preserve the original relative order of the nodes in each of ...

2018-10-02 14:43:25 164

原创 Partition List

/** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; } * } */class Solution { public ListNode partition(...

2018-10-02 14:32:42 128

原创 85. Maximal Rectangle

LeetCodeExploreProblemsMock ContestArticlesDiscuss Store PremiumNew Playgroundlifeqiuzhi520 833 2785. Maximal RectangleDescriptionHintsSubmissionsDiscussSolutionPick OneGiven a 2D bi...

2018-10-02 13:57:33 165

原创 84. Largest Rectangle in Histogram

LeetCodeExploreProblemsMock ContestArticlesDiscuss Store PremiumNew Playgroundlifeqiuzhi520 1206 3184. Largest Rectangle in HistogramDescriptionHintsSubmissionsDiscussSolutionPick One...

2018-10-02 11:47:59 177

原创 极客网站

https://www.geeksforgeeks.org/

2018-10-01 14:03:44 800

原创 8. Subsets

Given a set of distinct integers, nums, return all possible subsets (the power set).Note: The solution set must not contain dclass Solution { public List<List<Integer>> subsets(i...

2018-09-27 21:29:04 133

原创 77. Combinations DescriptionHintsSubmissionsDiscussSolution Given two integers n and k, return all p

public static List<List<Integer>> combine(int n, int k) { List<List<Integer>> combs = new ArrayList<List<Integer>>(); combine(combs, new ArrayList<Integer&

2018-09-27 20:46:11 167

原创 76. Minimum Window Substring

LeetCodeExploreProblemsMock ContestArticlesDiscuss Store PremiumNew Playgroundlifeqiuzhi52076. Minimum Window SubstringDescriptionHintsSubmissionsDiscussSolutionGiven a string S and a ...

2018-09-25 21:09:15 240

原创 计算机取证比赛的网站

http://forensicscontest.com/

2018-09-22 18:06:00 842

原创 66. Plus One

Given a non-empty array of digits representing a non-negative integer, plus one to the integer.The digits are stored such that the most significant digit is at the head of the list, and each elemen...

2018-09-21 08:47:31 123

原创 65. Valid Number

Validate if a given string can be interpreted as a decimal number.Some examples:"0" => true" 0.1 " => true"abc" => false"1 a" => false"2e10" => true" -90e3

2018-09-20 19:09:03 160

原创 62. Unique Paths

使用 领扣中国,来获得适合您的内容以及最佳的用户体验。即刻前往 | 将我的账号同步到 LeetCode 中国LeetCodeExploreProblemsMock ContestArticlesDiscuss Store PremiumNew Playgroundlifeqiuzhi520 874 6762. Unique PathsDescripti...

2018-09-19 23:23:12 134

原创 61. Rotate List

使用 领扣中国,来获得适合您的内容以及最佳的用户体验。即刻前往 | 将我的账号同步到 LeetCode 中国LeetCodeExploreProblemsMock ContestArticlesDiscuss Store PremiumNew Playgroundlifeqiuzhi52061. Rotate ListDescriptionHintsSu...

2018-09-18 20:30:17 120

原创 60. Permutation Sequence

使用 领扣中国,来获得适合您的内容以及最佳的用户体验。即刻前往 | 将我的账号同步到 LeetCode 中国LeetCodeExploreProblemsMock ContestArticlesDiscuss Store PremiumNew Playgroundlifeqiuzhi52060. Permutation SequenceDescripti...

2018-09-17 20:26:34 134

原创 57. Insert Interval

Given a set of non-overlapping intervals, insert a new interval into the intervals (merge if necessary).You may assume that the intervals were initially sorted according to their start times.Examp...

2018-09-16 19:54:51 105

原创 56. Merge Intervals

使用 领扣中国,来获得适合您的内容以及最佳的用户体验。即刻前往 | 将我的账号同步到 LeetCode 中国LeetCodeExploreProblemsMock ContestArticlesDiscuss Store PremiumNew Playgroundlifeqiuzhi520 1133 9256. Merge IntervalsDescr...

2018-09-13 21:03:36 132

原创 55. Jump Game

使用 领扣中国,来获得适合您的内容以及最佳的用户体验。即刻前往 | 将我的账号同步到 LeetCode 中国LeetCodeExploreProblemsMock ContestArticlesDiscuss Store PremiumNew Playgroundlifeqiuzhi520 1015 13555. Jump GameDescriptio...

2018-09-13 20:19:23 110

原创 54. Spiral Matrix

Given a matrix of m x n elements (m rowExample 1:Input:[ [ 1, 2, 3 ], [ 4, 5, 6 ], [ 7, 8, 9 ]]Output: [1,2,3,6,9,8,7,4,5]Example 2:Input:[ [1, 2, 3, 4], [5, 6, 7, 8], [9,10,11,12...

2018-09-10 19:33:35 117

原创 52. N-Queens II

class Solution { int count = 0; public int totalNQueens(int n) { boolean[] cols = new boolean[n]; // columns | boolean[] d1 = new boolean[2 * n]; // diagonals \ boolean[] d2 = new boolean[2 * n]; // d...

2018-09-10 18:22:05 106

原创 自己写的一个简单的加法解释器

package b.a.leetcode;public class Intercepter { private Token currentToken; private int currentPosition; private String currentText; private Token getNextToken() { if (curr...

2018-09-06 22:55:38 488

原创 50. Pow(x, n)

Implement pow(x, n), which calculates x raised to the power n (xn).Example 1:Input: 2.00000, 10Output: 1024.00000Example 2:Input: 2.10000, 3Output: 9.26100Example 3:Input: 2.00000, -2Out...

2018-09-05 21:08:31 120

原创 49. Group Anagrams

Given an array of strings, group anagrams together.Example:Input: ["eat", "tea", "tan", "ate", "nat", "bat"],Output:[ ["ate","eat","tea"], ["nat"

2018-09-05 20:46:19 138

原创 48. Rotate Image

public void rotate(int[][] matrix) { if(matrix == null || matrix.length == 0 || matrix[0].length == 0) return; int rows = matrix.length; int cols = matrix[0].length; for(int first=0, ...

2018-09-04 23:12:50 97

原创 Combination Sum

Given a set of candidate numbers (candidates) (without duplicates) and a target number (target), find all unique combinations in candidates where the candidate numbers sums to target.The same repea...

2018-09-03 21:59:31 93

原创 46. Permutations

Given a collection of distinct integers, returnclass Solution { public List<List<Integer>> permute(int[] nums, int index) { if (index == nums.length - 1) { Arr...

2018-09-02 18:40:15 102

原创 45. Jump Game II

Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents your maximum jump length at that position.Your goal is to...

2018-09-01 20:05:22 155

原创 44. Wildcard Matching

44. Wildcard MatchingDescriptionHintsSubmissionsDiscussSolutionPick OneGiven an input string (s) and a pattern (p), implement wildcard pattern matching with support for '?' and '*'.'?' Matches a...

2018-08-30 22:05:29 161

原创 37. Sudoku Solver

rite a program to solve a Sudoku puzzle by filling the empty cells.A sudoku solution must satisfy all of the following rules:Each of the digits 1-9 must occur exactly once in each row.Each of th...

2018-08-29 19:37:21 98

转载 Search in Rotated Sorted Array

class Solution { public int search(int[] A, int target) { if(A.length ==0) return -1; int lo = 0; int hi = A.length - 1; while (lo < hi) { int mid = (lo + hi) / 2; ...

2018-08-25 15:54:08 113

原创 40. Combination Sum II DescriptionHintsSubmissionsDiscussSolution

40. Combination Sum IIDescriptionHintsSubmissionsDiscussSolutionGiven a collection of candidate numbers (candidates) and a target number (target), find all unique combinations in candidates where t...

2018-08-23 19:20:05 94

原创 31. Next Permutation

Implement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers.If such arrangement is not possible, it must rearrange it as the lowest possible ...

2018-08-21 20:44:00 160

原创 36. Valid Sudoku

36. Valid SudokuDescriptionHintsSubmissionsDiscussSolutionPick OneDetermine if a 9x9 Sudoku board is valid. Only the filled cells need to be validated according to the following rules:Each row...

2018-08-17 20:52:56 177

jeb 破解下载

jeb 破解下载,安卓破解利器,解决在JAVA个版本奔溃报错问题

2019-03-14

超声信息随心所欲注册机

该文件是超声信息,随心所欲的注册机。主要用于根据随心所欲软件的机器码生成验证码。完全可用

2018-01-15

空空如也

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

TA关注的人

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