摘要:
最近做题,老是遇到一些概念性的问题(详见:牛客)逐步总结在此博客:1、常用数据结构 · 数组(静态数组、动态数组)、线性表、链表(单向链表、双向链表、循环链表)、队列、栈、树(二叉树、查找树、平衡树、线索树、线索树、堆)、图等的定义、存储和操作 · Hash(存储地址计算,冲突处理)2、数据存储类型... 阅读全文
摘要:
Given a list, rotate the list to the right by k places, where k is non-negative. For example: Given 1->2->3->4->5->NULL and k = 2, return 4->5->1->2-> 阅读全文
摘要:
EJB就是:"把你编写的软件中那些需要执行制定的任务的类,不放到客户端软件上了,而是给他打成包放到一个服务器上了"。是的,没错!EJB 就是将那些"类"放到一个服务器上,用C/S 形式的软件客户端对服务器上的"类"进行调用。EJB:http://blog.csdn.net/jojo52013145/... 阅读全文
摘要:
BS和CS的区别以及优缺点 (QQ软件和QQ web的区别)C/S又称Client/Server或客户/服务器模式。服务器通常采用高性能的PC、工作站或小型机,并采用大型数据库系统,如Oracle、Sybase、Informix或 SQL Server。客户端需要安装专用的客户端软件。 B/S是Br... 阅读全文
摘要:
题意: 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. Y 阅读全文
摘要:
http://blog.csdn.net/feike2008/article/details/5621354 待更 阅读全文
摘要:
待更新~ 参考:http://blog.csdn.net/hguisu/article/details/6155636 阅读全文
摘要:
Determine if a Sudoku is valid, according to: Sudoku Puzzles - The Rules. The Sudoku board could be partially filled, where empty cells are filled wit 阅读全文
摘要:
Given a pattern and a string str, find if str follows the same pattern. Here follow means a full match, such that there is a bijection between a lette 阅读全文
摘要:
1、总结hashcode的一个很好的文章:http://blog.csdn.net/fenglibing/article/details/8905007 http://blog.csdn.net/zhouj634620500/article/details/450344092、实现代码:/** 1、... 阅读全文