
leetcode
jw2015_8
本人毕业于一所重点高校的计算机科学与技术专业,拥有扎实的core java基础,良好的编程风格,熟悉struts+spring+hibernate模式的web开发;熟悉Android技术,Android内核;熟悉tomcat,jboss,apache服务器,精通J2EE语言,熟悉linux,unix及window环境下的软件开发,熟悉php项目的开发。
在校期间有多次社会实践经验,曾参加过学校网建项目的开发,学校二手交易平台的开发;带队参加过大型互联网公司的编程比赛,并且斩获名次。如盛大云计算机开发三等奖、腾讯校园之星二等奖、全国大学生电子商务大赛二等奖。
毕业以后首先在一家公司做某地区移动平台ERP系统的开发,作为团队的核心人物,在java WEB开发技术上有丰富的积累;然后,在ebay上海公司做hadoop数据处理,hbase数据存储的开发,有大数据处理和分布式并发处理扎实的功底;接着,又在一家手游公司工作,负责某手游Android项目的研发以及推广,积累了扎实的Android项目经验。在该公司,后面还独立承担了微信公众号的PHP项目的开发,熟知微信公众号的原理。
丰富的团队开发经验,以及成功案例,培养了我充分的自信心和敬业精神以及扎实的学科基础知识和较强的专业技能。我严格要求自己,自觉、守时。本人坦诚且有责任性,有独立进去品性,勤于动手、善于动脑,自学能力、抗压能力、适应新环境能力强。
目前我有一个比较稳定的开发团队,大家都是一起工作多年的好朋友,都具有丰富的项目经验和素质,能够开发优秀的作品,期待您的光顾!
展开
-
LeetCode Linked List Cycle
Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?题意:如何判断链表是否有环这是一个经典的问题,后面还有追问:如果有环,计算环的长度?找到碰撞点的位置? 首先,如何找环,设计两个指针,分别从链表的头节点...原创 2014-09-03 08:13:51 · 122 阅读 · 0 评论 -
LeetCode 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...原创 2014-09-05 12:13:50 · 80 阅读 · 0 评论 -
LeetCode Two Sum
Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the two numbers such that they add up to the target, wher...原创 2014-09-05 12:00:21 · 88 阅读 · 0 评论 -
LeetCode Word Ladder
Given two words (start and end), and a dictionary, find the length of shortest transformation sequence from start to end, such that:Only one letter can be changed at a timeEach intermediate wor...原创 2014-09-04 19:32:51 · 100 阅读 · 0 评论 -
LeetCode Word Break 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 = "cats...原创 2014-09-04 18:01:01 · 126 阅读 · 0 评论 -
LeetCode Word Break
Word BreakGiven a string s and a dictionary of words dict, determine if s can be segmented into a space-separated sequence of one or more dictionary words.For example, givens = "leetcode",dict =...原创 2014-09-04 09:31:12 · 135 阅读 · 0 评论 -
LeetCode Reorder List
Given a singly linked list L: L0→L1→…→Ln-1→Ln,reorder it to: L0→Ln→L1→Ln-1→L2→Ln-2→…You must do this in-place without altering the nodes' values.For example,Given {1,2,3,4}, reorder it to {1,4,2,...原创 2014-09-04 08:07:19 · 95 阅读 · 0 评论 -
LeetCode Sort List
Sort Listsort a linked list in O(n log n) time using constant space complexity.排序,时间复杂度为n(logn), 我们知道堆排序,归并排序即使在最坏的情况下时间复杂度为n(logn)。 这里使用链表的归并排序实现。 /** * Definition for singly-li...原创 2014-09-03 08:15:15 · 76 阅读 · 0 评论 -
LeetCode Max Points on a Line
Max Points on a Line Given n points on a 2D plane, find the maximum number of points that lie on the same straight line.一个平面中有很多点,找出能在同一条直线上的最多的点思路:遍历所有的点,在每次遍历中再依次遍历其他与该点没有计算过斜率的点,计算斜率,并统计数量。...原创 2014-09-03 08:14:33 · 82 阅读 · 0 评论 -
LeetCode Reverse Words in a String
Given an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the".click to show clarification.给定一个字符串,将字符串中的英文单词反转过来:实现一:以单词作为整体的方式,实现...原创 2014-09-03 08:14:15 · 92 阅读 · 0 评论 -
LeetCode 3Sum Closest
Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of the three integers. You may assume that each input would h...2014-09-05 12:20:28 · 102 阅读 · 0 评论