p********7 发帖数: 549 | 1 disk write一个10Byte的数据,为啥是10Bytes。
对了 merge hash file需要排序再merge么? |
|
h**o 发帖数: 548 | 2 I want to have a input string parsed by sscanf (or other function which
can work) in this way:
if the first part of the string is less than 10bytes, parse it and
assign it to a variable;
if the first part of the string is more than 10bytes, truncate it and
assign it to a variable.
Her is my expected result:
suppose input[] = "ThisStringFieldShouldBeTruncated 123
OtherStringFieldWhichAlsoShouldBeTruncated 456";
I want to parse it to
char v1[11]="ThisString"; int b1= 123, char v2[5] = "Othe", int |
|
h**o 发帖数: 548 | 3 I want to have a input string parsed by sscanf (or other function which
can work) using solaris C language in this way:
if the first part of the string is less than 10bytes, parse it and
assign it to a variable;
if the first part of the string is more than 10bytes, truncate it and
assign it to a variable.
Her is my expected result:
suppose input[] = "ThisStringFieldShouldBeTruncated 123
OtherStringFieldWhichAlsoShouldBeTruncated 456";
I want to parse it to
char v1[11]="ThisString"; int b1= 123, |
|
g*******y 发帖数: 1930 | 4 这个题目挺好的,顶上来大家讨论下。
我觉得用hash来count occurence应该是需要做的吧,有了hash file(may be
distributed across servers)之后就很简单了。
不过对于多servers的大系统如何高效的实现hash?单独的server算自己的hash,再跟
其他server通讯,merge hash file?
有个问题是,因为hash file太大,肯定是要写到disk上的文件,不可能在mem里面装下
,这样就涉及到一个disk write的问题,read时连续地址的item对应在hash表里的地址
都是不连续,而高效的disk write要求一次写入一个large chunk的data,如果你每次
只能disk write一个10Byte的数据,岂不是效率太低了?怎么解决这个问题? |
|
y****n 发帖数: 743 | 5 我对C/C++很初级,关于这个atoi请教大牛们一个问题:
不理解为什么要调用strchr?平均5次循环,10byte的常量空间?
...
static const char digits[] = "0123456789";
...
where = strchr(digits, *s);
...
digit = (where - digits);
...
如果我写成这样,有什么问题没有?
if ((*s >= '0') && (*s <= '9'))
digit = *s - '0'; |
|
发帖数: 1 | 6 http://www.popyard.com/cgi-mod/topic.cgi?num=397527&r=0&d=6
plagiarism
她在北戴河会见了大领导:韩春雨的事该尘埃落定了(组图) - 半路出家 [ 1382
bytes | 2016-08-10 ]
评《她在北戴河会见了大领导:韩春雨的事该尘埃落定了》-老粗-[112bytes|2016-08-
11]
楼主傻屄,尘埃落定了》-毛泽东同志-[0bytes|2016-08-10]
没想到楼主半路出家很会舔阴。-颜宁-[10bytes|2016-08-10]
谁会见谁?哈哈-反弹力度-[0bytes|2016-08-10]
她真无聊, 吃饱了撑的.-井底看天-[0bytes|2016-08-10]
颜宁的颜值影响因子高-春雨过后有夏涝-[0bytes|2016-08-10] |
|
h******v 发帖数: 30 | 7 适用对象: 日客流量在万人左右的商场超市。
技术方案:印制一万支RFID电子标签,送顾客,夹在钱包中。顾客上超市,在入出口处
RFIDtag被装在门口的系统所识别,由单片机将ID号及入出超市的时间存入U盘中的一个
按日期命名的dBase文件(一条记录10Byte应该够了吧)。年底由数据库软件统计出在店时
间前m位(多至1000),分别给予n元(少至100)购物券奖励。只要是前m位的顾客年底某天
钱包里装着RFIDtag进入超市,即可由电脑语音提醒其到兑奖处领取购物券,无须携带身
份证。
注意事项:如何防止超市员工携带RFIDtag浑水摸鱼 --- 规定每天每个RFIDtag在店时间
不得超过比如2小时,逾期当天不计积分;
如何防止一个人钱包里装多个RFIDtag --- 可由程序判断,若多个RFIDtag同
时进出超市,则这几个RFIDtag当天积分作废;
......
软硬件成本:3米作用范围的射频识别系统1000元,一万顾客的RFID电子标签500元,单片
机系统100元,U盘50元,全套软件30元,共记投资1680元。
优点:整套系统制作成 |
|