2021-03-19

CCF-CSP Markdown

CCF考Markdown的题目好像不是第一次了,而且HTML相关的也考过。这题把Markdown语法和HTML输出结合起来,要求解析Markdown语法(部分),然后转换为HTML输出。分为区块和行内两种语法,其中区块是空行分隔的,所以就很好处理了,因为一个区块内没有空行,并且相邻区块之间必定有空行,所以处理一个区块时,读取连续的非空行即可。当然保险起见,如果区块的行有某些特征,比如列表的行以星号开头,那么可以读取连续的有特征的行。

于是程序主体分为两层,外层枚举所有区块,内层对区块内的每一行进行行内的解析。其中行内的解析有嵌套的情况,这也是意料之中的事情。幸好题目限制了嵌套的复杂度,所以只是0到1层嵌套,并且规定了只能两种语法(强调和超链接)相互嵌套,而不能自身嵌套。所以看注释吧。

这题幸福来的优点突然。我本地测了几个简单情况后就全对了,看来程序总体结构没啥问题,并且没有出现很复杂的例子。

#include <cstdio>
#include <cctype>
#include <cstring>
#include <vector>
#include <string>
#include <cassert>
#include <stack>
#include <utility>
#include <iostream>
using namespace std;

vector<string> lines;
int N;

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

// 判断空行。 
bool Empty(string& str) {
	for (int i=0;i<str.length();++i) {
		if (!isspace(str[i])) return false;
	}
	return true;
}

void Read() {
	// 输入所有的行。 
	string line;
	while (getline(cin, line)) {
		lines.push_back(line);
	}
}

/*
注意到题目条件,超链接和强调可以嵌套,但是嵌套不超过1层,所以
可以直接把超链接或者强调的范围抠出来,因为不能嵌套超过1层,所以
从一个超链接的开始端直接搜索其结束端,就可以了,不会错的;对于强调也是同理。
这样就比较容易处理了,如果不注意到这一点,以为可以无限嵌套,那就麻烦多了。
范围抠出来后,用递归处理即可。
注意抠强调的时候,遇到第一个下划线后要加一,再找第二个下划线。 
*/
 
void ParseBlock(string& str, int L, int R);

void ParseLink(string& str, int L1, int R1, int L2, int R2) {
	printf("<a href=\"");
	// link
	ParseBlock(str, L2+1,R2-1);
	printf("\">");
	// text
	ParseBlock(str, L1+1,R1-1);
	printf("</a>");
}

void ParseEm(string& str, int L, int R) {
	assert(str[L]=='_');
	assert(str[R]=='_');
	printf("<em>");
	ParseBlock(str, L+1, R-1);
	printf("</em>");
}

void ParseBlock(string& str, int L, int R) {
	int i=L;
	while (i<=R) {
		char ch=str[i];
		if (ch == '_') {
			int j=i+1; // 注意,i本身就是下划线,要找i后面的第一个下划线。 
			while (j<=R && str[j] != '_') {
				++j;
			}
			ParseEm(str, i, j);
			i=j+1;
		} else if (ch == '[') {
			int j=i;
			while (j<=R && str[j] != ']') {
				++j;
			}
			assert(j<=R && str[j]==']');
			assert(j+1<=R && str[j+1]=='(');
			int k=j;
			while (k<=R && str[k] != ')') {
				++k;
			}
			assert(k<=R && str[k]==')');
			ParseLink(str, i, j, j+1, k);
			i=k+1;
		} else {
			// 普通字符,直接输出。
			putchar(ch);
			++i; 
		}
	}
}

// 处理一行,结尾不输出回车。 
void Block(string& str, int pos) {
	ParseBlock(str, pos, str.length()-1);
}

void Clean(string& str, int& i) {
	// 从i开始去掉连续的空格。
	while (i<str.length() && str[i]==' ') {
		++i;
	}
}

void Title(string& str) {
	int i=0;
	while (i<str.length() && str[i]=='#') {
		++i;
	}
	int n=i; // 等级。 
	Clean(str, i);
	printf("<h%d>", n);
	Block(str, i);
	printf("</h%d>\n", n);
}

void Ulist(int& i) {
	puts("<ul>");
	while (i<N && lines[i].size() && lines[i][0] == '*') {
		string& str=lines[i];
		int j=1;
		Clean(str, j);
		printf("<li>");
		Block(str, j);
		printf("</li>\n");
		++i;
	}
	puts("</ul>");
}

void Para(int& i) {
	printf("<p>");
	Block(lines[i], 0);
	// 先输出首行。
	++i; 
	while (i<N && !Empty(lines[i])) {
		printf("\n");
		Block(lines[i], 0);
		++i;
	}
	printf("</p>\n");
}

int main(int argc, char** argv) {
	Read();
	N=lines.size(); 
	int i=0;
	while (i<N) {
		while (i<N && Empty(lines[i])) {
			++i;
		}
		if (i>=N) {
			break;
		}
		string& str=lines[i];
		assert(str.length());
		if (str[0]=='#') {
			Title(str);
			++i;
		} else if (str[0] == '*') {
			Ulist(i);
		} else {
			Para(i);
		}
	}
	return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值