卡特兰数+高精C++模板
#include <iostream>#include <stdio.h>using namespace std;int a[101][101]={0};int main(){ int n,i,j,len,r,temp,t; int b[101]; a[1][0] = 1; len = 1; b[1] = 1; for(i=2;...