回顾大学三年,通过良师的教导和自身的刻苦学习,我已初步掌握如何运用计算机编程,也养成了认真对待学习和工作的好习惯! 在思想品德上,本人有良好道德修养,并有坚定的政治方向.我热爱祖国,热爱人民,遵纪守法,爱护公共财产,团结同学,乐于助人.并以务实求真的精神热心参予学校的公益宣传和爱国主义活动. ...
分类:
其他好文 时间:
2015-11-28 14:53:12
阅读次数:
147
题目:Given an integer n, count the total number of digit 1 appearing in all non-negative integers less than or equal to n.For example:Given n = 13,Retur...
分类:
其他好文 时间:
2015-11-28 12:01:13
阅读次数:
129
这一节写一个JPA的HelloWorld来体验一下。一、建立工程 按照 1、创建一个JPA project(解决“at least one user library must be selected”问题)中说的步骤建立一个JPA project。创建过程极其简单,就是 New → JPA pro....
分类:
其他好文 时间:
2015-11-28 11:52:54
阅读次数:
178
Given a non-negative integernum, repeatedly add all its digits until the result has only one digit.For example:Givennum = 38, the process is like:3 + ...
分类:
其他好文 时间:
2015-11-28 11:50:50
阅读次数:
125
Mergeksorted linked lists and return it as one sorted list. Analyze and describe its complexity.如果直接遍历链表数组,时间复杂度为T(n)=T(n-1)+o(lenn);即合并前n-1个链表的时间+与第n...
分类:
其他好文 时间:
2015-11-28 10:27:30
阅读次数:
155
Given two sorted integer arraysnums1andnums2, mergenums2intonums1as one sorted array.Note:You may assume thatnums1has enough space (size that is great...
分类:
其他好文 时间:
2015-11-28 06:32:15
阅读次数:
105
Given a non-negative number represented as an array of digits, plus one to the number.The digits are stored such that the most significant digit is at...
分类:
其他好文 时间:
2015-11-27 23:35:14
阅读次数:
174
Cuboid routeA spider, S, sits in one corner of a cuboid room, measuring 6 by 5 by 3, and a fly, F, sits in the opposite corner. By travelling on the s...
分类:
其他好文 时间:
2015-11-27 20:01:21
阅读次数:
231
问题:Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there exists one unique lon...
分类:
其他好文 时间:
2015-11-27 17:11:12
阅读次数:
131
题目:Convert a non-negative integer to its english words representation. Given input is guaranteed to be less than 2^31 - 1.For example,123 -> "One Hund...
分类:
其他好文 时间:
2015-11-27 14:44:00
阅读次数:
134