http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=1562
题意:求小于等于n(1 16)的约数个数最多的数。
反素数
根据反素数的定义,这个题就是让求最大的反素数。
反素数搜索的依据的两个重要的性质:
反素数的质因子是从2开始的连续的素数;
p=2^t1*3^t2*5^t3*7^t4.....必然t1>=...
分类:
其他好文 时间:
2014-07-24 17:41:46
阅读次数:
138
Do the UntwistTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 982Accepted Submission(s): 638 Prob...
分类:
其他好文 时间:
2014-07-24 17:31:55
阅读次数:
309
CREATE OR REPLACE PACKAGE BODY cux_fa_do_pkg IS --一、资产新增 PROCEDURE do_addition IS l_trans_rec fa_api_types.trans_rec_type; l_dist_trans_rec fa_api_ty....
Pointers * Pointers are variables * Pointers store only address of the memory location. they do not store a value. * Pointers are declared like :- int...
分类:
其他好文 时间:
2014-07-24 12:09:05
阅读次数:
288
Python有好多个GUI框架,wxPython比较流行,so just do it.....?? Win下各种不爽,又换Ubuntu ????跟着教程做个记事本。视频地址:http://www.pythoner.cn/course/topic/wxPython-gui/ (一)wxpyt...
分类:
编程语言 时间:
2014-07-24 10:55:44
阅读次数:
321
首先来看一个例子:计算100以内所有奇数的和以及所有偶数的和;分别显示之;[root@localhosttutor]#vimodd_even.sh#!/bin/bash
#
EvenSum=0
OddSum=0
forIin{1..100};do
if[$[$I%2]-eq0];then
EvenSum=$[$EvenSum+$I]
else
OddSum=$[$OddSum+$I]
fi
done
echo"EvenSumis:$Eve..
分类:
其他好文 时间:
2014-07-24 10:49:48
阅读次数:
282
mount()的最后一个参数data是传给文件系统解释的,有兴趣可以跟踪一下系统调用mount的流程(以vfat为例):sys_mount()-->do_mount()-->do_add_mount()-->do_kern_mount()-->do_kern_mount()-->get_sb_bde...
分类:
其他好文 时间:
2014-07-24 10:18:13
阅读次数:
281
题目:Reverse a linked list from position m to n. Do it in-place and in one-pass.For example:Given 1->2->3->4->5->NULL, m = 2 and n = 4,return 1->4->3->....
分类:
编程语言 时间:
2014-07-24 09:49:43
阅读次数:
204
英语字根- 1,ag=do,act 做,动- 2,agri=field 田地,农田(agri也做agro,agr)- 3,ann=year年- 4,audi=hear听- 5,bell=war战争- 6,brev=short短- ...
分类:
其他好文 时间:
2014-07-24 09:48:43
阅读次数:
386
1、关于默认搜索域
If you are using the Lucene query parser, queries that don't specify a field name will use the defaultSearchField. The DisMax and Extended DisMax query parsers do not use this value.
...
分类:
其他好文 时间:
2014-07-23 22:38:28
阅读次数:
279