CCF-20170903-JSON查询
这道题当时考ccf,五道题中做的时间最长的一道题....可惜最好只有0分!!
后来重现写了一下--(110行超级麻烦
主要思想:就是先对括号经行匹配,创建的时候分为创建表和创建元素两种情况,难点在于对字符串的分割
然而昨天在受到某婷的启发下,想用正则重写,发现正则不能实现递归括号匹配,最后用递归的方法重写了这道题.发现超级简单
只有50行....hh
递归版本:
- #include <bits/stdc++.h>
- using namespace std;
- map <string,string> mapp;
- map <string,int> cls;
- string str; int pos;
- string get_name () {
- string ans;
- for (pos+=;str[pos]!='\"';pos++) {
- if (str[pos]=='\\') pos++;
- ans.push_back(str[pos]);
- }
- return ans;
- }
- void build (string _name) {
- while (pos<str.size()&&str[pos]!='}') { // 不加pos<str.size()莫名错误90
- pos++;
- string s1=get_name(); cls[_name+s1]=;
- pos+=;
- if (str[pos]=='\"') {
- string s2=get_name();
- mapp[_name+s1]=s2;
- cls[_name+s1]=;
- }
- else build(_name+s1+".");
- pos++;
- }
- return ;
- }
- int main ()
- {
- int n,m; cin>>n>>m; getchar();
- while (n--) {
- string tmp; getline (cin,tmp);
- str+=tmp;
- }
- string tmp=str; str="";
- for (int i=;i<tmp.size();i++) {
- if (tmp[i]==' ') continue;
- str.push_back(tmp[i]);
- }
- build ("");
- while (m--) {
- getline (cin,tmp);
- if (cls[tmp]==) cout<<"NOTEXIST\n";
- else if (cls[tmp]==) cout<<"OBJECT\n";
- else cout<<"STRING "<<mapp[tmp]<<"\n";
- }
- return ;
- }
复杂版本:
- // 这个是一个只考虑了简单情况的程序
- // 关键词字符串包含'{' ,',' ,':'都没有包含
- #include <bits/stdc++.h>
- #define none string::npos
- using namespace std;
- struct node {
- string na;
- int key;
- string id;
- };
- vector < vector <node> > g(); int cnt;
- vector < string > sv;
- int mp [];
- int n,m;
- string trans(string str) {
- int x=str.find("\"");
- int y=str.rfind("\"");
- str=str.substr(x+,y-x-); string ans;
- for (int i=;i<str.size();i++) { //要考虑这样的情况不能直接替换 abc\\\\sx
- if (str[i]=='\\') {
- if (str[i+]=='\\') ans+='\\';
- else ans+='\"';
- i+=;
- }
- else ans+=str[i];
- }
- return ans;
- }
- vector <string> split (const string& str,const char flag=' ') {
- vector <string> sv; string tmp;
- istringstream iss(str);
- while (getline(iss,tmp,flag))
- sv.push_back(tmp);
- return sv;
- }
- void match (string str) {
- stack <int> st;
- for (int i=;i<str.size();i++)
- if (str[i]=='{') st.push(i);
- else if (str[i]=='}') {
- mp[st.top()]=i;
- st.pop();
- } // 找到大括号对应的位置
- }
- node ct_nt (int start,string str);
- int ct_obj (int start,string str);
- bool _find (int k,int x) {
- if (x==) return ;
- for (int i=;i<g[x].size();i++) {
- if (g[x][i].na==sv[k]) {
- if (k==sv.size()-) {
- if (g[x][i].key==) cout<<"STRING "<<g[x][i].id<<endl;
- else cout<<"OBJECT"<<endl;
- return ;
- }
- else
- return _find(k+,g[x][i].key);
- }
- }
- return ;
- }
- int main ()
- {
- cin>>n>>m; getchar();
- string str,s1;
- for (int i=;i<n;i++) {
- getline(cin,s1);
- str+=s1;
- }
- match (str);
- ct_obj(,str);
- while (m--) {
- getline(cin,str);
- sv=split(str,'.');
- if (!_find(,)) cout<<"NOTEXIST"<<endl;
- }
- return ;
- }
- node ct_nt (int start,string str) {
- node ans;
- int k=str.find(":");
- string s1=str.substr(,k);
- string s2=str.substr(k+);
- ans.na=trans(s1);
- int p=s2.find("{");
- if (p==none) {// string 类
- ans.key=;
- ans.id=trans(s2);
- }
- else ans.key=ct_obj(start+k+,s2);
- return ans;
- }
- int ct_obj (int start,string str) {
- int num=++cnt;
- int xpos=str.find("{");
- int ypos=str.rfind("}");
- str[ypos]=',';
- int i=xpos+; int p;
- while ( (p=str.find(",",i))!=none ) {
- int k=str.find("{",i);
- if (k!=none&&k<p) {
- k=mp[start+k];
- k=str.find(",",k-start);
- }
- else k=p;
- if (str.substr(i,k-i)!="") {
- node tmp=ct_nt(start+i,str.substr(i,k-i));
- g[num].push_back(tmp);
- }
- i=k+;
- }
- return num;
- }
CCF-20170903-JSON查询的更多相关文章
- CCF 201709-3 JSON查询
CCF 201709-3 JSON查询 试题编号: 201709-3 试题名称: JSON查询 时间限制: 1.0s 内存限制: 256.0MB 问题描述: 问题描述 JSON (JavaScript ...
- 【CCF】JSON查询
#include<iostream> #include<cstdio> #include<string> #include<cstring> #incl ...
- CCF CSP 201709-3 JSON查询
CCF计算机职业资格认证考试题解系列文章为meelo原创,请务必以链接形式注明本文地址 CCF CSP 201709-3 JSON查询 问题描述 JSON (JavaScript Object Not ...
- CCF(JSON查询:40分):字符串+模拟
JSON查询 201709-3 纯字符串模拟,考的就是耐心和细心.可惜这两样我都缺... #include<iostream> #include<cstdio> #includ ...
- JS 实现Json查询的方法实例
其实很简单,我这部分代码,前一部分是简单的实现如何使用JS写模板,第二个就是具体的实现了JSON查询的一个扩展. 以后查询Json就有了利器了. 代码如下: /* * 定义模板函数 ...
- CCF-CSP题解 201709-3 JSON查询
要求写一个小程序完成JSON查询的功能. 查询dfs就好了. 存储JSON对象用图(树)就好,把\(<key[],type,val[]>\)作为节点,然后又是字符串处理了. 其实就是个简化 ...
- CCF-CSP 201709-3 JSON查询 题解
试题编号: 201709-3 试题名称: JSON查询 时间限制: 1.0s 内存限制: 256.0MB 问题描述: 问题描述 JSON (JavaScript Object Notation) 是一 ...
- ccf 201612-3 权限查询
ccf 201612-3 权限查询 解题思路: 建立一个二维矩阵存储权限和角色 还差30分emmm #include<iostream> #include<cstring> ...
- MySQL全文索引、联合索引、like查询、json查询速度大比拼
目录 查询背景 一.like查询 二.json函数查询 三.联合索引查询 四.全文索引查询 结论 查询背景 有一个表tmp_test_course大概有10万条记录,然后有个json字段叫outlin ...
- Unity3D 通过JSON查询天气
一.天气查询API 获取天气信息,首先要找到提供天气数据的接口,我使用的是高德地图免费为我们提供的,网址为 https://lbs.amap.com/api/webservice/guide/api/ ...
随机推荐
- ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement
centos7.5 使用into outfile备份失败 问题: mysql> select * from world.city into outfile '/tmp/world_city.da ...
- Spring 学习——Spring AOP——AOP配置篇Aspect、Pointcut
Schena——based AOP 声明 Spring所有的切面和通知器都必须放在一个<aop:config>标签内,可以同时配置多个<aop:config>元素. 每一个&l ...
- java基础 (三)之ConcurrentHashMap(转)
一.背景: 线程不安全的HashMap 因为多线程环境下,使用Hashmap进行put操作会引起死循环,导致CPU利用率接近100%,所以在并发情况下不能使用HashMap. 效率低下的H ...
- bootStrap table 和 JS 开发过程中遇到问题汇总
1..bootStrap-table表头固定 在table定义的时候给高度属性就可以自动生成滚动条,并且固定表头[height: 220,] 2.为动态生成的DOM元素绑定事件 on("cl ...
- 20175317 《Java程序设计》第一周学习总结
20175317 <Java程序设计>第一周学习总结 教材学习内容总结 本周学习了Java大致的开发步骤,完成了课件自带的习题. 学习了在windows与Linux系统下不同的编译方法,掌 ...
- MogonDB安装及配置
1.下载地址:https://www.mongodb.com/download-center/community?jmp=docs 选择下载MSI文件类型 2.双击安装 此处如勾选,则会影响安装速度, ...
- CentOS6上ftp服务器搭建实战
1.安装程序包 [root@node1 ~]$ yum install -y vsftpd[root@node1 ~]$ yum install -y lftp # 安装测试软件 2.启动vsftpd ...
- prometheus热重启
prometheus启动命令添加参数 --web.enable-lifecycle 然后热重启:curl -XPOST http://localhost:9090/-/reload
- 锯齿状优惠券css绘制
对于图上优惠券左右两侧的半圆锯齿效果,两种处理方式,一种直接使用切图进行处理,一种是纯css进行效果绘制.切图的就不再赘述,主要说纯css效果绘制 绘制的结果如下图: 难点在于两侧的半圆孔是透明色,不 ...
- [hdu P3085] Nightmare Ⅱ
[hdu P3085] Nightmare Ⅱ Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Oth ...