我是靠谱客的博主 拉长蛋挞,最近开发中收集的这篇文章主要介绍CCF201803-3 URL映射,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

仿照老师的写的,理解了好久

#include<iostream>
#include<cmath>
#include<cstdio>
#include<string>
#include<cstring>
#include<algorithm>
#pragma warning(disable:4996)
using namespace std;
bool match(string &s, string &t, bool flag)
{
	int lena = s.length(), lenb = t.length();
	int ps = 0, pt = 0;
	while (ps < lena&&pt < lenb)
	{
		if (s[ps] == t[pt]) {
			ps++; pt++;
		}
		else {
			if (s[ps] != '<') return false;
			if (s[ps+1] == 'i') {
				if (flag) cout << ' ';
				bool ok = false;
				while (pt < lenb&&isdigit(t[pt]))
				{
					if (t[pt] != '0') ok = true;
					if (flag) {
						if (ok) cout << t[pt];
					}
					pt++;
				}
				if (!ok) return false;
				ps += 5;
			}
			else if (s[ps + 1] == 's') {
				if (flag) cout << ' ';
				bool ok = false;
				while (pt < lenb&&t[pt] != '/') {
					ok = true;
					if(flag) cout << t[pt];
					pt++;
				}
				if (!ok) return false;
				ps += 5;
			}
			else if (s[ps + 1] == 'p') {
				if (flag) {
					cout << ' ';
					while (t[pt]) cout << t[pt++];
				}
				return true;
			}
		}
	}
	return pt == lenb && ps == lena;
}
int main()
{
	int n, m;
	cin >> n >> m;
	string txt[100 + 10], url, names[100 + 10];
	for (int i = 0; i < n; i++) cin >> txt[i] >> names[i];
	while (m--)
	{
		cin >> url;
		int i;
		for (i = 0; i < n; i++) {
			if (match(txt[i], url, false)) {
				cout << names[i];
				match(txt[i], url, true);
				cout << endl;
				break;
			}
		}
		if (i == n) cout << "404n";
	}
	//system("pause");
}

 

最后

以上就是拉长蛋挞为你收集整理的CCF201803-3 URL映射的全部内容,希望文章能够帮你解决CCF201803-3 URL映射所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(48)

评论列表共有 0 条评论

立即
投稿
返回
顶部