自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

xunalove的博客

时间是一个伟大的作者,它会给每个人写出完美的结局来。

  • 博客(44)
  • 资源 (19)
  • 问答 (1)
  • 收藏
  • 关注

原创 657. Judge Route Circle(路线圈)

题目Initially, there is a Robot at position (0, 0). Given a sequence of its moves, judge if this robot makes a circle, which means it moves back to the original place.The move sequence is represente...

2018-02-26 21:03:34 263

原创 520. Detect Capital(检测大写字母)

题目Given a word, you need to judge whether the usage of capitals in it is right or not.We define the usage of capitals in a word to be right when one of the following cases holds:All letters in t...

2018-02-26 20:47:46 527

原创 383. Ransom Note(map容器)

题目Given an arbitrary ransom note string and another string containing letters from all the magazines, write a function that will return true if the ransom note can be constructed from the magazines ...

2018-02-26 17:50:40 257

原创 387. First Unique Character in a String

题目Given a string, find the first non-repeating character in it and return it’s index. If it doesn’t exist, return -1.Examples:s = "leetcode"return 0.s = "loveleetcode",return 2.Note: You ...

2018-02-26 17:32:48 175

原创 292. Nim Game(尼姆游戏)

题目You are playing the following Nim Game with your friend: There is a heap of stones on the table, each time one of you take turns to remove 1 to 3 stones. The one who removes the last stone will be...

2018-02-26 16:30:29 3500

原创 350. Intersection of Two Arrays II(两数组交集)

题目Given two arrays, write a function to compute their intersection.Example: Given nums1 = [1, 2, 2, 1], nums2 = [2, 2], return [2, 2].Note:Each element in the result should appear as many tim...

2018-02-26 00:15:07 290

原创 349. Intersection of Two Arrays(两数组的交集,vector中find()函数, 结果集去重)

题目Given two arrays, write a function to compute their intersection.Example: Given nums1 = [1, 2, 2, 1], nums2 = [2, 2], return [2].Note:Each element in the result must be unique.The result c...

2018-02-25 23:18:30 277

原创 242. Valid Anagram(有颠倒顺序构成的字符串---字符串排序(c++和python)

题目Given two strings s and t, write a function to determine if t is an anagram of s. s = "anagram", t = "nagaram", return true. s = "rat", t = "car", return false. 题意判断 t 是否是由 s 颠倒顺序构成的...

2018-02-25 23:03:37 365

原创 204. Count Primes(厄拉多塞筛法--质数筛法)

题目Description:Count the number of prime numbers less than a non-negative number, n.题意小于n的素数的个数。题解 普通的筛法求素数超时。 提示中的一种解法:厄拉多塞筛法(https://leetcode.com/problems/count-primes/hints/)西元前2...

2018-02-25 22:57:44 653

原创 202. Happy Number(unordered_map)

题目Write an algorithm to determine if a number is “happy”.A happy number is a number defined by the following process: Starting with any positive integer, replace the number by the sum of the squar...

2018-02-24 17:13:27 196

原创 455. Assign Cookies(分蛋糕--贪心)

题目Assume you are an awesome parent and want to give your children some cookies. But, you should give each child at most one cookie. Each child i has a greed factor gi, which is the minimum size of a...

2018-02-24 15:36:05 354

原创 303. Range Sum Query - Immutable(和累加法)

题目Given an integer array nums, find the sum of the elements between indices i and j (i ≤ j), inclusive.Example:Given nums = [-2, 0, 3, -5, 2, -1]sumRange(0, 2) -> 1sumRange(2, 5) -> -1...

2018-02-24 12:16:04 332

原创 198. House Robber(动态规划--房屋强盗)

题目You are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed, the only constraint stopping you from robbing each of them is that adjacent h...

2018-02-24 11:47:23 1467

原创 70. Climbing Stairs(爬楼梯)

题目You are climbing a stair case. It takes n steps to reach to the top.Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?Note: Given n will be a posi...

2018-02-24 11:13:29 261

原创 682. Baseball Game(栈的应用)

题目You’re now a baseball game point recorder.Given a list of strings, each string can be one of the 4 following types:Integer (one round's score): Directly represents the number of points you get...

2018-02-24 00:53:17 351

原创 496. Next Greater Element I(下一个更大的元素)

题目You are given two arrays (without duplicates) nums1 and nums2 where nums1’s elements are subset of nums2. Find all the next greater numbers for nums1’s elements in the corresponding places of nums...

2018-02-23 23:56:35 471

原创 232. Implement Queue using Stacks(用栈模拟队列)

题目Implement the following operations of a queue using stacks.push(x) -- Push element x to the back of queue.pop() -- Removes the element from in front of queue.peek() -- Get the front element.e...

2018-02-23 22:44:30 317

原创 225. Implement Stack using Queues(用队列模拟栈)

题目Implement the following operations of a stack using queues.push(x) – Push element x onto stack.pop() – Removes the element on top of the stack.top() – Get the top element.empty() – Return wh...

2018-02-21 14:25:26 248

原创 155. Min Stack(带有获取当前最小值的栈)

题目Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.push(x) -- Push element x onto stack.pop() -- Removes the element on top of the stack.top() -- ...

2018-02-21 13:48:20 297

原创 Leetcode#661. Image Smoother

题目Given a 2D integer matrix M representing the gray scale of an image, you need to design a smoother to make the gray scale of each cell becomes the average gray scale (rounding down) of all the 8 s...

2018-02-19 21:35:35 142

原创 Leetcode#561. Array Partition I

题目Given an array of 2n integers, your task is to group these integers into n pairs of integer, say (a1, b1), (a2, b2), …, (an, bn) which makes sum of min(ai, bi) for all i from 1 to n as large as po...

2018-02-19 21:27:12 193

原创 Leetcode#746. Min Cost Climbing Stairs(最低花费登楼梯--动态规划)

题目On a staircase, the i-th step has some non-negative cost cost[i] assigned (0 indexed).Once you pay the cost, you can either climb one or two steps. You need to find minimum cost to reach the top...

2018-02-19 17:07:20 231

原创 Leetcode#695. Max Area of Island(岛屿最大面积,深搜dfs)

题目Given a non-empty 2D array grid of 0’s and 1’s, an island is a group of 1’s (representing land) connected 4-directionally (horizontal or vertical.) You may assume all four edges of the grid are su...

2018-02-19 16:15:45 1116

原创 Leetcode#697. Degree of an Array(数组的度)

题目Given a non-empty array of non-negative integers nums, the degree of this array is defined as the maximum frequency of any one of its elements.Your task is to find the smallest possible length o...

2018-02-18 23:48:12 625

原创 Leetcode#724. Find Pivot Index

题目Given an array of integers nums, write a method that returns the “pivot” index of this array.We define the pivot index as the index where the sum of the numbers to the left of the index is equal...

2018-02-18 22:07:56 314

原创 Leetcode#747. Largest Number At Least Twice of Others

题目In a given integer array nums, there is always exactly one largest element.Find whether the largest element in the array is at least twice as much as every other number in the array.If it is, ...

2018-02-18 22:02:55 252

原创 Leetcode#665. Non-decreasing Array(非递减数组)

题目Given an array with n integers, your task is to check if it could become non-decreasing by modifying at most 1 element.We define an array is non-decreasing if array[i] <= array[i + 1] holds f...

2018-02-18 21:52:06 276

原创 Leetcode已刷题目题解汇总

Leetcode已刷题目题解链接汇总(持续更新中。。。。。。。) 分类题解链接【Easy-Brainteaser】脑筋急转弯1道292. Nim Game(尼姆游戏) 【Easy-Sort 】排序3道242. Valid Anagram(有颠倒顺序构成的字符串—字符串排序(c++和python)349. Intersection of Two A...

2018-02-16 21:57:12 2949

原创 Leetcode#674. Longest Continuous Increasing Subsequence(最长连续递增子序列的长度))

题目Given an unsorted array of integers, find the length of longest continuous increasing subsequence (subarray).Example 1:Input: [1,3,5,4,7]Output: 3Explanation: The longest continuous increasi...

2018-02-16 21:53:16 286

原创 Leetcode#643. Maximum Average Subarray I(连续子数组的最大平均值)

题目Given an array consisting of n integers, find the contiguous subarray of given length k that has the maximum average value. And you need to output the maximum average value.Example 1:Input: [1...

2018-02-10 14:34:27 1265

原创 Leetcode#M628.aximum Product of Three Numbers(三个数最大积)

题目Given an integer array, find three numbers whose product is maximum and output the maximum product.Example 1:Input: [1,2,3]Output: 6Example 2:Input: [1,2,3,4]Output: 24Note:1.The l...

2018-02-09 22:22:00 209

原创 Leetcode#581. Shortest Unsorted Continuous Subarray(最短未排连续子数组)

题目Given an integer array, you need to find one continuous subarray that if you only sort this subarray in ascending order, then the whole array will be sorted in ascending order, too.You need to f...

2018-02-09 18:13:24 223

原创 Leetcode#566. Reshape the Matrix(重塑矩阵)

题目In MATLAB, there is a very useful function called ‘reshape’, which can reshape a matrix into a new one with different size but keep its original data.You’re given a matrix represented by a two-d...

2018-02-09 17:31:35 233

原创 Leetcode#532. K-diff Pairs in an Array(k差异对)

题目Given an array of integers and an integer k, you need to find the number of unique k-diff pairs in the array. Here a k-diff pair is defined as an integer pair (i, j), where i and j are both number...

2018-02-09 16:59:57 268

原创 Leetcode#219. Contains Duplicate II(包含副本II)

题目Given an array of integers and an integer k, find out whether there are two distinct indices i and j in the array such that nums[i] = nums[j] and the absolute difference between i and j is at most...

2018-02-08 18:30:18 170

原创 Leetcode#189. Rotate Array(翻转数组)

题目Rotate an array of n elements to the right by k steps.For example, with n = 7 and k = 3, the array [1,2,3,4,5,6,7] is rotated to [5,6,7,1,2,3,4].Note: Try to come up as many solutions as you ...

2018-02-08 14:44:37 234

原创 Leetcode#605. Can Place Flowers

题目Suppose you have a long flowerbed in which some of the plots are planted and some are not. However, flowers cannot be planted in adjacent plots - they would compete for water and both would die.

2018-02-07 21:34:23 180

原创 Leetcode#485. Max Consecutive Ones

题目Given a binary array, find the maximum number of consecutive 1s in this array.Example 1:Input: [1,1,0,1,1,1]Output: 3Explanation: The first two digits or the last three digits are consecut

2018-02-07 20:11:46 197

原创 Leetcode#414. Third Maximum Number

题目Given a non-empty array of integers, return the third maximum number in this array. If it does not exist, return the maximum number. The time complexity must be in O(n).Example 1:Input: [3, 2,

2018-02-07 19:54:46 180

原创 Leetcode#766. Toeplitz Matrix (托普利兹矩阵)

题目A matrix is Toeplitz if every diagonal from top-left to bottom-right has the same element.Now given an M x N matrix, return True if and only if the matrix is Toeplitz.Example 1:Input: matrix

2018-02-07 19:40:07 1126

计算机组成原理

主要包含专业课计算机组成原理的重点和书上部分习题以及答案的详解

2018-02-05

mysql-connector-java-5.1.25.zip

一个jar包而已,赋值外界与数据的连接接口。 如:mysql-connector-java-5.1.15-bin.jar 放到lib中,然后就能jdbc连接数据库啦。

2017-10-15

weather.exe

桌面版python 获取未来七天的天气情况

2017-07-07

shut.exe

Python实现Windows定时关机 打包后的文件,可直接下载双击打开使用

2017-07-05

Sublime Text Build 3126 x64.zip

Sublime Text Build 3126 x64.zip

2017-07-05

PyQt5-5.4-gpl-Py3.4-Qt5.4.0-x64

python

2017-07-05

python-3.4.3

python

2017-07-05

贪吃蛇游戏

C++ ,MFC

2017-06-26

基于asp.net的博客开发系统

本系统是我参考网上一位大神做的本学期的ASP.NET的课程设计。其中完善了插入文章的功能

2017-06-18

JAVA贪吃蛇

java课程设计,有完整代码和课程报告

2017-06-18

员工信息管理系统

.NET书,第十三章完整可运行代码和文档

2017-06-18

C语言 数字游戏

大一实训作业,有代码和文档,供大一学生学习。

2017-06-18

火车订票系统

这是我大一下学期C实训做的火车订票系统,有完整的代码和报告,供大家使用

2017-06-18

msvcr120.dll 官方下载

用于解决:无法启动此程序,因为计算机丢失MSVCR120.dll问题

2017-06-01

java学生学生信息界面

这是我用java+window builder做的界面设计

2017-05-25

java小程序之简单学生信息录入界面

这是我用java控件windows builder完成的一个简易的学生信息录入界面设计

2017-05-25

简单员工管理系统

2017-03-19

2016数据结构期末复习资料下

自己总结的数据结构期末复习资料,希望对你们有帮助。

2017-01-13

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

TA关注的人

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