悲剧文本 C++

悲剧文本

问题描述 :

你有一个破损的键盘。键盘上的所有键都可以正常工作,但有时Home键或者End键会自动按下。你并不知道键盘存在这一问题,而是专心地输入英文单词,甚至连显示器都没瞧一眼。当你看显示器时,展现在你面前的是一段悲剧的文本。你的任务是计算这段文本有几个单词。

输入包含多组数据。每组数据占一行,包含不超过20000个英文字母、空格、字符 “[” 或者 “]”(这多达20000个字符的数据会显示在一行,不用担心会换行)。其中字符“[”表示Home键(将光标定位到一行的开头),“]”表示End键(将光标定位到一行的结尾)。输入结束标志为文件结束符(EOF)。

输入文本不超过50kB。对于每组数据,输出一个数字,即这一行悲剧文本中共有几个单词(以空格分隔的连续字符串为一个单词)。

比如,输入:
This is a [Beiju] text
得到的悲剧文本是:
BeijuThis is a text
因此,共有4个单词。

而输入:
This[ ]is[ ]a [Beiju] text
得到的悲剧文本是:
Beiju Thisisa text
因此,共有3个单词。

输入说明 :
可输入多组文本,每组包含一行,其中包括英文字母组成的单词、空格、[、]

输出说明 :
输出一个整数,为单词数目

输入范例 :
This is a [Beiju] text
This[ ]is[ ]a [Beiju] text

输出范例 :
4
3

#include
#include
#include 
#include
#include
using namespace std;
struct node
{char data;struct node *next;
};struct node* create(char text[])
{int i;struct node *current;//当前插入位置指针struct node *tail;//尾指针struct node *head;//头指针head = (struct node*)malloc(sizeof(struct node));//头结点head->next = NULL;current = head;//当前位置指针指向头结点tail = head;//尾指针也指向头结点for(i=0; i<strlen(text); i++){if(text[i] == '['){//当前位置指针回到最前面current = head;}else if (text[i] == ']'){//当前位置指针移到最后面current = tail;}else{//在当前位置指针后面插入结点struct node *p;p = (struct node*)malloc(sizeof(struct node));p->data = text[i];p->next = current->next;current->next = p;current = p;if(current->next == NULL) tail = current; //当前位置在最后面,则需要修改tail指针}}return head;
}
void  displayLink(node *head)
{struct node *p=head->next;cout<<"head-->";while(p!= NULL){cout<<p->data<<"-->";p=p->next;}cout<<"tail\n";
}
int count(struct node *head)//因为已经把[]里的内容自动提前了,所以只需要根据单词的字母前后是否有空格即可判断是否是一个单词
{
//请在此输入你的代码,统计单词数目并返回struct node *p=head->next;int num=0,isornot=0;while(p!=NULL){if(isornot==0&&p->data!=' '){num=num+1;isornot=1;}if(isornot==1&&p->data==' '){isornot=0;}p=p->next;}return num;//函数形参为链表头指针,注意,其中第一个结点是头结点
}int main()
{//freopen("input2.txt","r",stdin);//freopen("output2.txt", "w", stdout);char text[100005];struct node *head,*p;int num;while(gets(text)!=NULL){head=create(text);//for(p=head->next; p!=NULL; p=p->next)//    printf("%c",p->data);//printf("\n");num=count(head);printf("%d\n",num);}//printf("%.2f\n", (double)clock()/CLOCKS_PER_SEC);//displayLink(head);这边自己验证了一下创建出来的列表输出来的时候是什么内容,发现已经把带[]的提到前面去了return 0;}


本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!

相关文章

立即
投稿

微信公众账号

微信扫一扫加关注

返回
顶部