上一页 1 2 3 4 5 6 7 ··· 15 下一页
摘要: linux下安装mysql(5.0rpm的server和client)虽然说的是linux下的,但和freebsd应该还是有共通之处吧,所以摘录过来。linux下安装mysql(5.0 rpm的server和client)一、引言想使用Linux已经很长时间了,由于没有硬性任务一直也没有系统学*,*... 阅读全文
posted @ 2015-07-25 13:04 朱传林 阅读(155) 评论(0) 推荐(0)
摘要: Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.For example,"A man, a plan, a canal: Pana... 阅读全文
posted @ 2015-07-25 11:56 朱传林 阅读(125) 评论(0) 推荐(0)
摘要: Given a sorted integer array without duplicates, return the summary of its ranges.For example, given[0,1,2,4,5,7], return["0->2","4->5","7"].本题我采用的是最直... 阅读全文
posted @ 2015-07-24 11:17 朱传林 阅读(132) 评论(0) 推荐(0)
摘要: Description:Count the number of prime numbers less than a non-negative number,n.判断一个数是否是质数主要有以下几种方法:1)直接用该数除于所有小于它的数(非0,1),如果均不能被它整除,则其是质数;2)除以小于它一半的数... 阅读全文
posted @ 2015-07-24 09:58 朱传林 阅读(146) 评论(0) 推荐(0)
摘要: Given a column title as appear in an Excel sheet, return its corresponding column number.For example: A -> 1 B -> 2 C -> 3 ... Z -> 26 ... 阅读全文
posted @ 2015-07-24 08:51 朱传林 阅读(192) 评论(0) 推荐(0)
摘要: Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, given the fol... 阅读全文
posted @ 2015-07-22 20:03 朱传林 阅读(121) 评论(0) 推荐(0)
摘要: Given a binary search tree, write a functionkthSmallestto find thekth smallest element in it.Note:You may assume k is always valid, 1 ≤ k ≤ BST's tota... 阅读全文
posted @ 2015-07-22 14:28 朱传林 阅读(157) 评论(0) 推荐(0)
摘要: 一、操作系统引论1、操作系统作用 1)为用户与计算机硬件系统之间提供接口;2)管理计算机系统资源;3)对计算机资源进行抽象。2、操作系统发展: 1)无操作系统的计算机系统:用户直接使用操作系统; 2)单道批处理系统:将作业输入到磁带上,每次调用一道作业进入内存; 3)... 阅读全文
posted @ 2015-07-20 16:40 朱传林 阅读(212) 评论(0) 推荐(0)
摘要: Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.push(x) -- Push element x onto stack.pop() -- Removes... 阅读全文
posted @ 2015-07-20 08:34 朱传林 阅读(161) 评论(0) 推荐(0)
摘要: Implement the following operations of a stack using queues.push(x) -- Push element x onto stack.pop() -- Removes the element on top of the stack.top()... 阅读全文
posted @ 2015-07-19 19:29 朱传林 阅读(123) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 15 下一页