The count-and-say sequence is the sequence of
integers beginning as follows:1, 11, 21, 1211, 111221, ...1is read off as"one
1"or11.11is read off as"tw...
分类:
其他好文 时间:
2014-06-13 00:54:33
阅读次数:
376
SUMMARY OF THE INVENTION The present invention
pertains to a write combining buffer for use in a microprocessor. The
microprocessor fetches data and i...
分类:
其他好文 时间:
2014-06-12 23:38:04
阅读次数:
435
方法1.go to the Product menu and find the Edit
Scheme menu there.While in Edit Scheme window, select the "Run" option on the
left hand side of the scree...
分类:
其他好文 时间:
2014-06-12 21:03:42
阅读次数:
317
错误:org.apache.jasper.JasperException:/index.jsp(2,0)UnabletoreadTLD"META-INF/c.tld"fromJARfile"file:/D:/svnframe/web/WEB-INF/lib/standard-1.1.2.jar":解决:移除lib下的jsp-api.jar和servlet-api.jar即可
分类:
其他好文 时间:
2014-06-10 23:46:20
阅读次数:
312
循环结构 : while循环 do...while循环(几乎不用)
for循环(使用最多)特点:在给定的条件成立时,反复执行某程序段,直到条件不成立为止。给定的条件为循环条件,反复执行的程序段位循环体。一、while循环while(条件表达式){
循环语句;}#import int mai...
分类:
移动开发 时间:
2014-06-10 21:36:59
阅读次数:
346
SELECT PHA.SEGMENT1 订单号,pha.approved_flag 批准状态,
pha.closed_code 订单关闭状态,PHA.COMMENTS 订单说明, pvs.vendor_site_code 供应商地点,
PLA.LINE_NUM订单行, plla.need_by_da...
分类:
数据库 时间:
2014-06-10 21:30:54
阅读次数:
562
SELECT
sum(rcvt.quantity)接收事务处理汇总数--已排除退货--rsh.receipt_num 收据号, --pov.vendor_name
供应商名称, --poh.segment1 采购订单, --pol.line_num 订单行, --PTL.LINE_TYPE 行类.....
分类:
数据库 时间:
2014-06-10 20:22:36
阅读次数:
334
--采购订单执行情况查询(七天内接收情况)select pha.segment1 采购订单,
msib.segment1 物料编码, pla.quantity 订单数量, plla.need_by_date 需求日期, ppf.FULL_NAME
采购员, nvl(rcv.quantity,0).....
分类:
数据库 时间:
2014-06-10 20:11:49
阅读次数:
892
第一次写SCI论文的撰写技巧,本身不是大牛,也许没什么资格谈这个。在此仅是个人的一些思考,对不对,好不好,且当另论。
对于偏向应用的工科生来说,写SCI论文不是一件简单的事情。当然,也不是没可能。全在于如何提取、构思、组织你的论文。论文本身的学术价值当然少不了。但对一个问题,在有的人眼里,就是“这么简单,有什么可写的”;而对于另外一些人,却能挖掘出背后的深度、广度、和细度,完成一篇较高价...
分类:
其他好文 时间:
2014-06-10 18:43:05
阅读次数:
210
问题:对链表进行排序,要求时间复杂度为NlogN。归并排序。
inline ListNode* getMidle(ListNode *head){
if(NULL == head || NULL == head->next)
return head;
ListNode *pslow = head;
ListNode *pfast = head;
while (pfast->next...
分类:
其他好文 时间:
2014-06-10 17:35:56
阅读次数:
282