第四章讲的是串,数组和广义表,在做题过程中,逐渐发现STL中string的强大(下一个目标,熟悉string的函数)。
天梯赛L1-8 估值一亿的AI核心代码
这题也终于打出来了,心得是要尽量划分层次,思路要清晰,严谨,多写几个判断函数是完全没问题的(努力习惯中...)
AC代码:(原题)
#include <iostream> #include <string.h> using namespace std; char map[1005]; char a[1005],b[1005],c[1005]; int alen=0,blen=0,clen=0; bool vis[1005]; bool isbiao(char a) { if(a>='a'&&a<='z'||a>='A'&&a<='Z'||a>='0'&&a<='9'||a==' ') return false ; else return true; } bool isspace(char a) { return a==' '; } bool isalone(char a) { return isbiao(a)||isspace(a)||a=='