【206-Reverse Linked List(反转一个单链表)】【LeetCode-面试算法经典-Java实现】【所有题目目录索引】代码下载【https://github.com/Wang-Jun-Chao】原题 Reverse a singly linked list.
题目大意 反转单链表。
解题思路 使用头插法。
代码实现结点类public class ListNode {...
分类:
编程语言 时间:
2015-08-27 07:12:30
阅读次数:
281
【205-Isomorphic Strings(同构字符串)】【LeetCode-面试算法经典-Java实现】【所有题目目录索引】代码下载【https://github.com/Wang-Jun-Chao】原题 Given two strings s and t, determine if they are isomorphic.
Two strings are isomorphic if...
分类:
编程语言 时间:
2015-08-27 07:11:50
阅读次数:
354
【201-Bitwise AND of Numbers Range(范围数位与结果)】【LeetCode-面试算法经典-Java实现】【所有题目目录索引】代码下载【https://github.com/Wang-Jun-Chao】原题 Given a range [m, n] where 0 <= m <= n <= 2147483647, return the bitwise AND of al...
分类:
编程语言 时间:
2015-08-26 08:20:22
阅读次数:
150
【202-Happy Number(开心数字)】【LeetCode-面试算法经典-Java实现】【所有题目目录索引】代码下载【https://github.com/Wang-Jun-Chao】原题 Write an algorithm to determine if a number is “happy”.
A happy number is a number defined by the...
分类:
移动开发 时间:
2015-08-26 08:19:14
阅读次数:
204
【203-Remove Linked List Elements(删除单链表中的元素)】【LeetCode-面试算法经典-Java实现】【所有题目目录索引】代码下载【https://github.com/Wang-Jun-Chao】原题 Remove all elements from a linked list of integers that have value val.
Exampl...
分类:
编程语言 时间:
2015-08-26 08:17:43
阅读次数:
309
一、目录索引和身份验证1、把http服务的编码改为utf-8,把var/www/html目录下 设置不允许目录索引,允许局部配置[root@localhost html]# vi /etc/httpd/conf/httpd.conf按:进入命令行 ,再输入 /AddDefau,按回车看有AddDef...
分类:
其他好文 时间:
2015-08-26 08:17:24
阅读次数:
233
【155-Min Stack(最小栈)】【LeetCode-面试算法经典-Java实现】【所有题目目录索引】原题 Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.
push(x) – Push element x onto stack.
po...
分类:
编程语言 时间:
2015-08-21 07:10:52
阅读次数:
215
【153-Find Minimum in Rotated Sorted Array(找旋转数组中的最小数字)】【LeetCode-面试算法经典-Java实现】【所有题目目录索引】原题 Suppose a sorted array is rotated at some pivot unknown to you beforehand.
(i.e., 0 1 2 4 5 6 7 might bec...
分类:
编程语言 时间:
2015-08-21 07:09:31
阅读次数:
267
【154-Find Minimum in Rotated Sorted Array II(找旋转数组中的最小数字II)】【LeetCode-面试算法经典-Java实现】【所有题目目录索引】原题 Follow up for “Find Minimum in Rotated Sorted Array”:
What if duplicates are allowed?
Would this...
分类:
编程语言 时间:
2015-08-21 07:09:12
阅读次数:
298
【152-Reverse Words in a String(反转字符串中的单词)】【LeetCode-面试算法经典-Java实现】【所有题目目录索引】原题 Given an input string, reverse the string word by word.
For example,
Given s = "the sky is blue",
return "blue i...
分类:
编程语言 时间:
2015-08-20 08:00:56
阅读次数:
194