JavaScript 刷题一

最近读<JavaScirpt编程精解>,想把里面的三个大的程序实现,现在记录下来.

问题一:

  从下面这封信中,emily奶奶每封信的结尾都会用同样的格式注明哪只猫出生了,哪只猫死去了.现要求提取cat的信息,要求知道cats的bitrth,date,name.

  格式如下:

  输入:mailArchives 数组

  输出:

{   
Spot: 
{ name: 'Spot',
birth: Wed Mar 05 1997 00:00:00 GMT+0800 (CST),
mother: 'unknown' },

... ...

}

  信的格式如下:

  

Dear nephew,

Your mother told me you have taken up skydiving. Is this true? You watch yourself, young man! Remember what happened to my husband? And that was only from the second floor!

Anyway, things are very exciting here. I have spent all week trying to get the attention of Mr. Drake, the nice gentleman who moved in next door, but I think he is afraid of cats. Or allergic to them? I am going to try putting Fat Igor on his shoulder next time I see him, very curious what will happen.

Also, the scam I told you about is going better than expected. I have already gotten back five 'payments', and only one complaint. It is starting to make me feel a bit bad though. And you are right that it is probably illegal in some way.

(... etc ...)

Much love, Aunt Emily

died 27/04/2006: Black Leclère

born 05/04/2006 (mother Lady Penelope): Red Lion, Doctor Hobbles the 3rd, Little Iroquois

  我的代码完成如下:

var mailArchive={
    0:"Dear nephew,\
\nYour mother told me you have taken up skydiving. Is this true? You watch yourself, young man! Remember what happened to my husband? And that was only from the second floor!\
\nAnyway, things are very exciting here. I have spent all week trying to get the attention of Mr. Drake, the nice gentleman who moved in next door, but I think he is afraid of cats. Or allergic to them? I am going to try putting Fat Igor on his shoulder next time I see him, very curious what will happen.\
\nAlso, the scam I told you about is going better than expected. I have already gotten back five 'payments', and only one complaint. It is starting to make me feel a bit bad though. And you are right that it is probably illegal in some way.\
\nMuch love, Aunt Emily\
\ndied 27/04/2006: Black Spot\
\nborn 05/04/2006 (mother Lady Penelope): Red Lion, Doctor Hobbles the 3rd, Little Iroquois",
1:"Dear nephew,\
\nYour mother told me you have taken up skydiving. Is this true? You watch yourself, young man! Remember what happened to my husband? And that was only from the second floor!\
\nAnyway, things are very exciting here. I have spent all week trying to get the attention of Mr. Drake, the nice gentleman who moved in next door, but I think he is afraid of cats. Or allergic to them? I am going to try putting Fat Igor on his shoulder next time I see him, very curious what will happen.\
\nAlso, the scam I told you about is going better than expected. I have already gotten back five 'payments', and only one complaint. It is starting to make me feel a bit bad though. And you are right that it is probably illegal in some way.\
\nMuch love, Aunt Emily\
\ndied 27/04/2007: White Star\
\nborn 30/05/2006 (mother LaLy Penelope): Black spot"
}
var livingCats={"a":true};
var cats = {"Spot": catRecord("Spot", new Date(1997, 2, 5),
              "unknown")};
for(var mail=0;mail<2;mail++)
{
    var paragraphs=mailArchive[mail].split("\n");
    for(var i=0;i<paragraphs.length;i++)
    {
    if(startswith(paragraphs[i],"born"))
        addCats(cats,catNames(paragraphs[i]),extractDate(paragraphs[i]),extractMother(paragraphs[i]));
    else if(startswith(paragraphs[paragraph],"died"))
        deadCats(cats,catNames(paragraphs[i]),extractDate(paragraphs[i]),extractMother(paragraphs[i]));
    }
}
console.log(cats);

function extractMother(paragraph)
{
    var start=paragraph.indexOf("mother")+"mother".length;
    var end=paragraph.indexOf(")");
    return paragraph.slice(start,end);
}

function extractDate(paragraph) 
{
    function numberAt(start,length){
    return Number(paragraph.slice(start,start+length))
    }
    return new Date(numberAt(11,4),numberAt(8,2),numberAt(5,2));
}
function catRecord(name,birthdate,mother)
{
    return {name: name,birth:birthdate,mother:mother};
}
function addCats(set,names,birthdate,mother)
{
  set[names]=catRecord(names,birthdate,mother);
}
function deadCat(set,names,birthdate)
{
    set[names].death=birthdate;
}
function catNames(paragraph)
{
    var colon=paragraph.indexOf(":");
    return paragraph.slice(colon+2).split(",")[0];
}
function startswith(string,pattern)
{
  return string.slice(0,pattern.length)==pattern;
}

 

 

转载于:https://www.cnblogs.com/sansan/p/3491287.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值