String Processing Function Implementation
string function in c
strcpy
- 使用一个临时变量保存串的首地址,然后最后返回这个地址
- 然后在最后判断是否遇到’\0’来结束复制
1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
|
n | loglogn | logn | n | nlogn | n2 | n3 | 2n |
---|---|---|---|---|---|---|---|
16 | 2 | 4 | 24 | 2*24=25 | 28 | 212 | 216 |
256 | 3 | 8 | 28 | 8*28=211 | 216 | 224 | 2256 |
1024 | 3.3 | 10 | 210 | 10*210=213 | 220 | 230 | 21024 |
64K | 4 | 16 | 216 | 16*216=220 | 232 | 248 | 264K |
1M | 4.3 | 20 | 220 | 20*220=224 | 240 | 260 | 21M |
1G | 4.9 | 30 | 230 | 30*230=235 | 260 | 290 | 21G |
omindex --db index --url / ./index_file/
在虚拟机的VS2010中编译出错