上一页 1 2 3 4 5 6 7 8 9 ··· 15 下一页
摘要: 一些相关概念: 1、散列技术是在记录的存储位置和它的关键字之间建立一个确定的应关系f,使得每个关键字key对应一个存储位置f(key)。查找时根据这个对应关系找到给定值key的映射f(key)。那么这个f成为散列函数,又成为哈希函数。(hash,表面上存key在散列表中的位置)。 2、散列技术将记录 阅读全文
posted @ 2016-05-08 21:46 wangb021 阅读(2627) 评论(0) 推荐(0) 编辑
摘要: (1) GC 是垃圾收集的意思(Gabage Collection),内存处理是编程人员容易出现问题的地方,忘记或者错误的内存回收会导致程序或系统的不稳定甚至 崩溃,Java提供的GC功能可以自动监测对象是否超过作用域从而达到自动回收内存的目的,Java语言没有提供释放已分配内存的显示操作方法。 ( 阅读全文
posted @ 2016-05-08 09:03 wangb021 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 快速失败: 参考 http://bbs.csdn.net/topics/350203767 安全失败 阅读全文
posted @ 2016-05-07 11:28 wangb021 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 0、最根本的区别是,方法的重载是不同的方法叫了同样的名字,而方法的覆盖是同一个方法在子类和父类之间的多态表现。1、方法的覆盖是子类和父类之间的关系,是垂直关系;方法的重载是同一个类中方法之间的关系,是水平关系。 2、覆盖只能由一个方法,或只能由一对方法产生关系;方法的重载是多个方法之间的关系。 3、 阅读全文
posted @ 2016-05-07 09:59 wangb021 阅读(2010) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2016-05-03 01:18 wangb021 阅读(115) 评论(0) 推荐(0) 编辑
摘要: Given an input string, reverse the string word by word. For example, Given s = "the sky is blue", return "blue is sky the". Update (2015-02-12): For C 阅读全文
posted @ 2016-04-29 11:38 wangb021 阅读(385) 评论(0) 推荐(0) 编辑
摘要: 1、web.xml千万要放在WEB-INF目录下!!!!!而不是lib里面! 2、当出现空指针时,找到相应的点,利用System.out.println();可以定位到程序走哪一步 3、servlet初始化问题 4、乱码问题:在web.xml中加入jsp的配置内容; 5、各种拼写错误,要杜绝 6、看 阅读全文
posted @ 2016-04-26 21:27 wangb021 阅读(105) 评论(0) 推荐(0) 编辑
摘要: Write a function that takes a string as input and reverse only the vowels of a string. Example 1: Given s = "hello", return "holle". Example 2: Given 阅读全文
posted @ 2016-04-26 13:07 wangb021 阅读(269) 评论(0) 推荐(0) 编辑
摘要: Write a function that takes a string as input and returns the string reversed. Example: Given s = "hello", return "olleh". Subscribe to see which comp 阅读全文
posted @ 2016-04-26 13:06 wangb021 阅读(115) 评论(0) 推荐(0) 编辑
摘要: Given two numbers represented as strings, return multiplication of the numbers as a string. Note: The numbers can be arbitrarily large and are non-neg 阅读全文
posted @ 2016-04-26 13:04 wangb021 阅读(126) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 15 下一页