以 32 位的 ELF header 数据结构为例: 1 #define EI_NIDENT 16 2 typedef struct { 3 unsigned char e_ident[EI_NIDENT]; 4 Elf32_Half e_type; 5 Elf32_Half...
分类:
其他好文 时间:
2015-06-13 06:18:17
阅读次数:
132
UVA 11752 超级幂Z -The Super PowersTime Limit:1000MSMemory Limit:0KB64bit IO Format:%lld & %lluSubmitStatusPracticeUVA 11752Description题意:定义一个数为超级幂,当这个数能...
分类:
其他好文 时间:
2015-06-12 23:52:48
阅读次数:
160
在浏览网页时,可能由于客户端计算机没有安装一些特殊字体,则网页将无法显示实际效果。因此,用户可以使用
@font-face调用服务器端字体。
@font-face{
font-family : ;
src : [][,[format]]*;
[font-weight : ];
[font-style : ];
}
opacity 由浮点数字和单位标识符组成的长度值。不可...
分类:
其他好文 时间:
2015-06-12 20:57:20
阅读次数:
154
DryingTime Limit: 2000msMemory Limit: 65536KBThis problem will be judged onPKU. Original ID:310464-bit integer IO format:%lld Java class name:MainIt i...
分类:
其他好文 时间:
2015-06-12 19:24:44
阅读次数:
103
function [x,minf] = minLM(f,x0,beta,u,v,var,eps)
format long;
if nargin == 6
eps = 1.0e-6;
end
S = transpose(f)*f;
k = length(f);
n = length(x0);
x0 = transpose(x0);
A = jacobian(f,var);
tol = 1;
...
分类:
其他好文 时间:
2015-06-12 17:21:27
阅读次数:
101
C - Data Structure?
Time Limit:5000MS Memory Limit:65536KB 64bit IO Format:%I64d
& %I64u
Submit Status Practice HDU
4217
Description
Data structure is one of the basic skills...
分类:
其他好文 时间:
2015-06-12 11:51:24
阅读次数:
85
A - 今年暑假不AC Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u Description“今年暑假不AC?” “是的。” “那你干什么呢?” “看世界杯呀,笨蛋!” “...
分类:
其他好文 时间:
2015-06-12 09:59:34
阅读次数:
123
poj2478 欧拉函数水题Y -Farey SequenceTime Limit:1000MSMemory Limit:65536KB64bit IO Format:%I64d & %I64uSubmitStatusPracticePOJ 2478DescriptionThe Farey Sequ...
分类:
其他好文 时间:
2015-06-12 00:54:54
阅读次数:
157
UVA 10200 区间预处理,浮点误差W -Prime TimeTime Limit:3000MSMemory Limit:0KB64bit IO Format:%lld & %lluSubmitStatusPracticeUVA 10200Description题意:测试找素数函数f(n)=n^...
分类:
其他好文 时间:
2015-06-12 00:40:37
阅读次数:
213
L - Minimum Sum LCM
Time
Limit:3000MS Memory Limit:0KB 64bit
IO Format:%lld & %llu
Submit Status Practice UVA
10791
题意:输入正整数n,找至少两个数,使得他们的LCM为n且要输出最小的和;
思路:既然LCM是n,那么一定是...
分类:
其他好文 时间:
2015-06-11 23:04:29
阅读次数:
123