PATA-1032 sharing

//
//  main.cpp
//  first
//
//  Created by 刘玖周 on 2019/9/16.
//  Copyright © 2019年 刘玖周. All rights reserved.
//
#include 
#include 
const int maxn=100010;
struct NODE{
    char data;
    int next;
    bool flag;
}node[maxn];
int main(){
    for(int i=0;i

 

你可能感兴趣的:(PAT)