
java
文章平均质量分 65
673556617-real
leetcode java angular golang 分布式
展开
-
575. Decode String
DescriptionGiven an expression s includes numbers, letters and brackets. Number represents the number of repetitions inside the brackets(can be a string or another expression).Please expand expressio...原创 2019-01-28 10:52:10 · 382 阅读 · 1 评论 -
hadoop 之wordcount
除了这个之外当然还看了几个demo, 把wordcount放到最后,打算单独实现一遍。最后还是在继承类的泛型的地方存在一些盲区,日后补上。代码:package wordcount;import java.io.IOException; import java.util.StringTokenizer;import org.apache.hadoop.conf原创 2015-08-05 03:14:29 · 434 阅读 · 0 评论 -
MongoDB启动方法
最近在做个人博客,打算尝试下mongodb做数据库。记录下如何开启数据库的。1. 首先开启一个控制台,进入mongodb的安装目录的bin文件夹下,如图2.命令mongod --dbpath=数据库路径 路径自己选定就可以3.开启后会提示等待请求接入。可以用localhost:27017来查看状态这样就连上了。因为之前用的是My原创 2015-07-24 19:07:59 · 552 阅读 · 0 评论 -
Search for a Range
Given a sorted array of integers, find the starting and ending position of a given target value.Your algorithm's runtime complexity must be in the order of O(log n).If the target is not found原创 2015-08-04 15:20:56 · 490 阅读 · 0 评论 -
Generate Parentheses
Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses.For example, given n = 3, a solution set is:"((()))", "(()())", "(())()", "()(())", "()()原创 2015-07-24 14:54:19 · 470 阅读 · 0 评论 -
Rectangle Area
Find the total area covered by two rectilinear rectangles in a 2D plane.Each rectangle is defined by its bottom left corner and top right corner as shown in the figure.Assume that the tota原创 2015-07-24 14:18:30 · 511 阅读 · 0 评论 -
Search Insert Position
Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order.You may assume no duplicates in the array.原创 2015-08-04 15:32:58 · 447 阅读 · 0 评论 -
3Sum
Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero.Note:Elements in a triplet (a,b,c原创 2015-07-22 18:40:39 · 423 阅读 · 0 评论 -
Valid Parentheses
Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.The brackets must close in the correct order, "()" and "()[]{}" are all va原创 2015-07-22 17:51:19 · 506 阅读 · 0 评论 -
Merge Two Sorted Lists
Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.改了好久,可是明明不难的啊。代码:package leetcode;import java.uti原创 2015-07-22 13:40:53 · 384 阅读 · 0 评论 -
Letter Combinations of a Phone Number
Given a digit string, return all possible letter combinations that the number could represent.A mapping of digit to letters (just like on the telephone buttons) is given below.Input:Digit st原创 2015-07-21 22:49:21 · 551 阅读 · 0 评论 -
mac下配置JAVA_HOME
因为java用了很久了,这些基础的东西都还没搞明白(有的是因为版本的问题),觉得是件感到遗憾的事情。参考了网上的解决办法,对于 10.10:使用命令: /usr/libexec/java_home 查看路径: dhcp112:~ liuchang$ /usr/libexec/java_home /Library/Java/JavaVirtualM原创 2015-10-11 13:01:53 · 498 阅读 · 0 评论 -
使用Springmvc, Mybatis 重构 JPetStore
大二时候的作业是将jpetstore改写成基于jsp的形式,最近学了下mybatis 以及springmvc感觉要比传统的jsp方便一些。重新实现了一下。差一个页面,但是使用的技术都用到了。以后再完善吧代码地址:http://pan.baidu.com/s/1pL3Wz5x数据库地址:http://pan.baidu.com/s/1i5e0pY9原创 2016-06-08 03:06:47 · 1333 阅读 · 0 评论 -
Wiggle Sort
leetcode 上的一道题[LeetCode] Wiggle Sort Wiggle SortGiven an unsorted array nums, reorder it in-place such that nums[0] = nums[2] .For example, given nums = [3, 5, 2, 1, 6, 4], one pos原创 2016-05-22 17:00:33 · 412 阅读 · 0 评论 -
473. Add and Search Word - Data structure design
lint code DescriptionDesign a data structure that supports the following two operations: addWord(word) and search(word)search(word) can search a literal word or a regular expression string con...原创 2019-01-27 16:04:41 · 375 阅读 · 0 评论 -
947. Most Stones Removed with Same Row or Column
Most Stones Removed with Same Row or ColumnOn a 2D plane, we place stones at some integer coordinate points. Each coordinate point may have at most one stone.Now, a move consists of removing a ston...原创 2019-01-27 10:39:31 · 371 阅读 · 0 评论 -
959. Regions Cut By Slashes
959. Regions Cut By Slashes In a N x N grid composed of 1 x 1 squares, each 1 x 1 square consists of a /, \, or blank space. These characters divide the square into contiguous regions.(Note tha...原创 2019-01-27 10:31:58 · 524 阅读 · 0 评论 -
Balanced Binary Tree
https://leetcode.com/problems/balanced-binary-tree/ 以前应该已经做过这类题了 已经蠢到不忍直视。。 1. 遍历对于左右孩子分别判断是否是平衡的,并且要求左右高度差为<2, 显然在求高度的时候,有些许许多多的重复操作2. 也是遍历,但是避免重复操作 在求高度的时候,可以将是否是平衡树的信息以数字形式re...原创 2018-11-08 16:20:01 · 188 阅读 · 0 评论 -
synchronized and Reentrantlock
https://www.cnblogs.com/CarpenterLee/p/7896361.html转载 2018-06-07 05:25:04 · 219 阅读 · 0 评论 -
Java 并发编程实战 第一部分小结
下列"并发技巧清单" 列举了第一部分介绍的概念和规则* 可变状态是直观重要的(it's mutable state, stupid) 所有的并发问题都可以归结为如何协调对并发状态的访问,可变状态越少,就越容易确保线程的安全性。* 尽量将域声明为final类型,除非需要他们是可变的* 不可变对象一定是线程安全的 不可变对象极大地降低并发编程的复杂性,他们更为简单而且安全,可以任意共享而无...原创 2018-05-22 01:28:13 · 272 阅读 · 0 评论 -
Java 并发 CopyOnWriteArrayList
https://blog.youkuaiyun.com/mazhimazh/article/details/19210547转载 2018-04-12 02:03:23 · 225 阅读 · 0 评论 -
Java 并发 this引用逸出
http://www.cnblogs.com/whatisjava/archive/2013/05/29/3106336.html转载 2018-04-11 04:46:21 · 330 阅读 · 0 评论 -
Maximum Subarray
Find the contiguous subarray within an array (containing at least one number) which has the largest sum.For example, given the array [-2,1,-3,4,-1,2,1,-5,4],the contiguous subarray [4,-1,2,1] ha原创 2016-10-24 09:38:08 · 259 阅读 · 0 评论 -
Permutations
Given a collection of distinct numbers, return all possible permutations.For example,[1,2,3] have the following permutations:[ [1,2,3], [1,3,2], [2,1,3], [2,3,1], [3,1,2], [3,2,1原创 2016-09-06 06:04:16 · 510 阅读 · 0 评论 -
Remove Nth Node From End of List
Given a linked list, remove the nth node from the end of list and return its head.For example, Given linked list: 1->2->3->4->5, and n = 2. After removing the second node from the end, the原创 2015-07-21 19:43:34 · 554 阅读 · 0 评论 -
Longest Common Prefix
Write a function to find the longest common prefix string amongst an array of strings.总之不难,但是脑袋要清醒..代码:public class Solution { public String longestCommonPrefix(String[] strs) {原创 2015-07-21 14:31:48 · 501 阅读 · 0 评论 -
HBase基本数据操作详解
需要获取hbase列族信息,这篇文章讲的比较详细。故搬过来转载:http://blog.youkuaiyun.com/u010967382/article/details/37878701引言之前详细写了一篇HBase过滤器的文章,今天把基础的表和数据相关操作补上。本文档参考最新(截止2014年7月16日)的官方Ref Guide、Developer API编写。所有代码均转载 2015-08-13 15:00:49 · 648 阅读 · 0 评论 -
Remove Duplicates from Sorted Array
Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.Do not allocate extra space for another array, you must do this in place with原创 2015-07-28 21:41:05 · 437 阅读 · 0 评论 -
No Java runtime present, requesting install.
转载:http://blog.sina.com.cn/s/blog_600e56a60102v18i.html估计是因为系统版本的问题,这条博客解决了在10.10下出现No Java runtime present, requesting install.的问题如果没有安装java , 可以去官网下载安装安装完还提示这个错误,可以v转载 2015-08-23 13:14:57 · 6364 阅读 · 0 评论 -
Swap Nodes in Pairs
Given a linked list, swap every two adjacent nodes and return its head.For example,Given 1->2->3->4, you should return the list as 2->1->4->3.Your algorithm should use only constant space. Y原创 2015-07-28 20:53:46 · 396 阅读 · 0 评论 -
JSP 获取真实IP地址的代码
转载:http://www.jb51.net/article/21272.htm在JSP里,获取客户端的IP地址的方法是:request.getRemoteAddr(),这种方法在大部分情况下都是有效的。但是在通过了 Apache,Squid等反向代理软件就不能获取到客户端的真实IP地址了。如果使用了反向代理软件,用 request.getRemoteAddr()方法获取的转载 2015-07-26 15:18:01 · 2116 阅读 · 0 评论 -
java 用 _id 查找 MongoDB 下的数据
找网上的资料看了下增删改查,等日后补上。已经实现了数据的插入,现在想通过 _id属性来查找数据。一开始看到 类似 55b321df715cc162076eb466 这么一长串的内容觉得是string类型。但是发现并不能搜索到结果,在网上搜到了解决方案:String sid = "55b321df715cc162076eb466";sitem.put("_id", new Object原创 2015-07-25 14:29:02 · 1105 阅读 · 0 评论 -
动态规划之钢条切割
采用子底向上的方式,依次计算切割钢管所能获得的最大收益,然后是对应的分割方案。原创 2015-03-23 12:42:52 · 538 阅读 · 0 评论 -
堆排序
先附上代码:public class Heapify {//从n/2开始查找public void buildHeapify(int[] list){//从一开始存//int[] list ={0,4,2,6,24,12,9}; length=7 max=6int start=(list.length-1)/2;for原创 2015-03-22 12:58:56 · 451 阅读 · 0 评论 -
快速排序
先将快速排序的代码放上:public class QuickSort {public void quickSort( int[] List, int a, int b){if(aint position=partition(List,a,b);quickSort(List,a,position-1);quickSort(List,positi原创 2015-03-21 14:34:43 · 480 阅读 · 0 评论 -
Rabin-Karp 字符匹配法
思路参照《算法导论》,请自行百度。代码:package stringMatch;public class RKMethod {int [] text={1,2,4,5,7,1,9,0,5,7,2,4,6,5};int [] pattern={2,4,6};int n=text.length; //text 长度int m=patt原创 2015-03-27 22:36:27 · 554 阅读 · 0 评论 -
java 编写的 mp3 播放器 1
学java也有一段时间了,想拿一些小的例子来练下手。实践的时候总是会发现很多新的问题,在这里简单罗列下实现的过程以及期间出现的一些问题,等待这个寒假给补完吧。现在做了有六七成的样子吧。 首先需要导入一个已经写好的jar包,可以直接百度下载 jaudiotagger.jar 这里面封装了一系列多媒体文件的信息的获取方法。 还有一个就是需要安装Java媒体框原创 2015-01-06 11:46:58 · 1234 阅读 · 0 评论 -
Jena API 使用介绍
转载:http://blog.youkuaiyun.com/javafreely/article/details/8432522本文将对jena 的使用进行简单介绍。部分内容参考了这里 http://jena.apache.org/tutorials/rdf_api.html 。 1. jena 包下载与开发环境配置首先,从这里下载 jena 包 apache-jana-2.转载 2015-08-09 18:56:37 · 1458 阅读 · 0 评论 -
Palindrome Number
Determine whether an integer is a palindrome. Do this without extra space.实现代码:public boolean isPalindrome02(int x) { String num= Integer.toString(x); if(num.length()>11 || num.charAt(0)=='原创 2015-07-19 11:19:03 · 386 阅读 · 0 评论 -
Container With Most Water
Given n non-negative integers a1, a2, ..., an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of line i is at (i, ai) and (i, 0). Fin原创 2015-07-19 12:28:32 · 437 阅读 · 0 评论