这道题当时考ccf,五道题中做的时间最长的一道题....可惜最好只有0分!!

后来重现写了一下--(110行超级麻烦

主要思想:就是先对括号经行匹配,创建的时候分为创建表和创建元素两种情况,难点在于对字符串的分割

然而昨天在受到某婷的启发下,想用正则重写,发现正则不能实现递归括号匹配,最后用递归的方法重写了这道题.发现超级简单

只有50行....hh

递归版本:

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. map <string,string> mapp;
  4. map <string,int> cls;
  5. string str; int pos;
  6. string get_name () {
  7. string ans;
  8. for (pos+=;str[pos]!='\"';pos++) {
  9. if (str[pos]=='\\') pos++;
  10. ans.push_back(str[pos]);
  11. }
  12. return ans;
  13. }
  14. void build (string _name) {
  15. while (pos<str.size()&&str[pos]!='}') { // 不加pos<str.size()莫名错误90
  16. pos++;
  17. string s1=get_name(); cls[_name+s1]=;
  18. pos+=;
  19. if (str[pos]=='\"') {
  20. string s2=get_name();
  21. mapp[_name+s1]=s2;
  22. cls[_name+s1]=;
  23. }
  24. else build(_name+s1+".");
  25. pos++;
  26. }
  27. return ;
  28. }
  29. int main ()
  30. {
  31. int n,m; cin>>n>>m; getchar();
  32. while (n--) {
  33. string tmp; getline (cin,tmp);
  34. str+=tmp;
  35. }
  36. string tmp=str; str="";
  37. for (int i=;i<tmp.size();i++) {
  38. if (tmp[i]==' ') continue;
  39. str.push_back(tmp[i]);
  40. }
  41. build ("");
  42. while (m--) {
  43. getline (cin,tmp);
  44. if (cls[tmp]==) cout<<"NOTEXIST\n";
  45. else if (cls[tmp]==) cout<<"OBJECT\n";
  46. else cout<<"STRING "<<mapp[tmp]<<"\n";
  47. }
  48. return ;
  49. }

复杂版本:

  1. // 这个是一个只考虑了简单情况的程序
  2. // 关键词字符串包含'{' ,',' ,':'都没有包含
  3. #include <bits/stdc++.h>
  4. #define none string::npos
  5. using namespace std;
  6. struct node {
  7. string na;
  8. int key;
  9. string id;
  10. };
  11. vector < vector <node> > g(); int cnt;
  12. vector < string > sv;
  13. int mp [];
  14. int n,m;
  15. string trans(string str) {
  16. int x=str.find("\"");
  17. int y=str.rfind("\"");
  18. str=str.substr(x+,y-x-); string ans;
  19. for (int i=;i<str.size();i++) { //要考虑这样的情况不能直接替换 abc\\\\sx
  20. if (str[i]=='\\') {
  21. if (str[i+]=='\\') ans+='\\';
  22. else ans+='\"';
  23. i+=;
  24. }
  25. else ans+=str[i];
  26. }
  27. return ans;
  28. }
  29. vector <string> split (const string& str,const char flag=' ') {
  30. vector <string> sv; string tmp;
  31. istringstream iss(str);
  32. while (getline(iss,tmp,flag))
  33. sv.push_back(tmp);
  34. return sv;
  35. }
  36. void match (string str) {
  37. stack <int> st;
  38. for (int i=;i<str.size();i++)
  39. if (str[i]=='{') st.push(i);
  40. else if (str[i]=='}') {
  41. mp[st.top()]=i;
  42. st.pop();
  43. } // 找到大括号对应的位置
  44. }
  45. node ct_nt (int start,string str);
  46. int ct_obj (int start,string str);
  47. bool _find (int k,int x) {
  48. if (x==) return ;
  49. for (int i=;i<g[x].size();i++) {
  50. if (g[x][i].na==sv[k]) {
  51. if (k==sv.size()-) {
  52. if (g[x][i].key==) cout<<"STRING "<<g[x][i].id<<endl;
  53. else cout<<"OBJECT"<<endl;
  54. return ;
  55. }
  56. else
  57. return _find(k+,g[x][i].key);
  58. }
  59. }
  60. return ;
  61. }
  62. int main ()
  63. {
  64. cin>>n>>m; getchar();
  65. string str,s1;
  66. for (int i=;i<n;i++) {
  67. getline(cin,s1);
  68. str+=s1;
  69. }
  70. match (str);
  71. ct_obj(,str);
  72. while (m--) {
  73. getline(cin,str);
  74. sv=split(str,'.');
  75. if (!_find(,)) cout<<"NOTEXIST"<<endl;
  76. }
  77. return ;
  78. }
  79. node ct_nt (int start,string str) {
  80. node ans;
  81. int k=str.find(":");
  82. string s1=str.substr(,k);
  83. string s2=str.substr(k+);
  84. ans.na=trans(s1);
  85. int p=s2.find("{");
  86. if (p==none) {// string 类
  87. ans.key=;
  88. ans.id=trans(s2);
  89. }
  90. else ans.key=ct_obj(start+k+,s2);
  91. return ans;
  92. }
  93. int ct_obj (int start,string str) {
  94. int num=++cnt;
  95. int xpos=str.find("{");
  96. int ypos=str.rfind("}");
  97. str[ypos]=',';
  98. int i=xpos+; int p;
  99. while ( (p=str.find(",",i))!=none ) {
  100. int k=str.find("{",i);
  101. if (k!=none&&k<p) {
  102. k=mp[start+k];
  103. k=str.find(",",k-start);
  104. }
  105. else k=p;
  106. if (str.substr(i,k-i)!="") {
  107. node tmp=ct_nt(start+i,str.substr(i,k-i));
  108. g[num].push_back(tmp);
  109. }
  110. i=k+;
  111. }
  112. return num;
  113. }

CCF-20170903-JSON查询的更多相关文章

  1. CCF 201709-3 JSON查询

    CCF 201709-3 JSON查询 试题编号: 201709-3 试题名称: JSON查询 时间限制: 1.0s 内存限制: 256.0MB 问题描述: 问题描述 JSON (JavaScript ...

  2. 【CCF】JSON查询

    #include<iostream> #include<cstdio> #include<string> #include<cstring> #incl ...

  3. CCF CSP 201709-3 JSON查询

    CCF计算机职业资格认证考试题解系列文章为meelo原创,请务必以链接形式注明本文地址 CCF CSP 201709-3 JSON查询 问题描述 JSON (JavaScript Object Not ...

  4. CCF(JSON查询:40分):字符串+模拟

    JSON查询 201709-3 纯字符串模拟,考的就是耐心和细心.可惜这两样我都缺... #include<iostream> #include<cstdio> #includ ...

  5. JS 实现Json查询的方法实例

    其实很简单,我这部分代码,前一部分是简单的实现如何使用JS写模板,第二个就是具体的实现了JSON查询的一个扩展. 以后查询Json就有了利器了. 代码如下: /*         * 定义模板函数   ...

  6. CCF-CSP题解 201709-3 JSON查询

    要求写一个小程序完成JSON查询的功能. 查询dfs就好了. 存储JSON对象用图(树)就好,把\(<key[],type,val[]>\)作为节点,然后又是字符串处理了. 其实就是个简化 ...

  7. CCF-CSP 201709-3 JSON查询 题解

    试题编号: 201709-3 试题名称: JSON查询 时间限制: 1.0s 内存限制: 256.0MB 问题描述: 问题描述 JSON (JavaScript Object Notation) 是一 ...

  8. ccf 201612-3 权限查询

     ccf 201612-3 权限查询 解题思路: 建立一个二维矩阵存储权限和角色 还差30分emmm #include<iostream> #include<cstring> ...

  9. MySQL全文索引、联合索引、like查询、json查询速度大比拼

    目录 查询背景 一.like查询 二.json函数查询 三.联合索引查询 四.全文索引查询 结论 查询背景 有一个表tmp_test_course大概有10万条记录,然后有个json字段叫outlin ...

  10. Unity3D 通过JSON查询天气

    一.天气查询API 获取天气信息,首先要找到提供天气数据的接口,我使用的是高德地图免费为我们提供的,网址为 https://lbs.amap.com/api/webservice/guide/api/ ...

随机推荐

  1. 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 ...

  2. Spring 学习——Spring AOP——AOP配置篇Aspect、Pointcut

    Schena——based AOP 声明 Spring所有的切面和通知器都必须放在一个<aop:config>标签内,可以同时配置多个<aop:config>元素. 每一个&l ...

  3. java基础 (三)之ConcurrentHashMap(转)

    一.背景: 线程不安全的HashMap     因为多线程环境下,使用Hashmap进行put操作会引起死循环,导致CPU利用率接近100%,所以在并发情况下不能使用HashMap.   效率低下的H ...

  4. bootStrap table 和 JS 开发过程中遇到问题汇总

    1..bootStrap-table表头固定 在table定义的时候给高度属性就可以自动生成滚动条,并且固定表头[height: 220,] 2.为动态生成的DOM元素绑定事件 on("cl ...

  5. 20175317 《Java程序设计》第一周学习总结

    20175317 <Java程序设计>第一周学习总结 教材学习内容总结 本周学习了Java大致的开发步骤,完成了课件自带的习题. 学习了在windows与Linux系统下不同的编译方法,掌 ...

  6. MogonDB安装及配置

    1.下载地址:https://www.mongodb.com/download-center/community?jmp=docs 选择下载MSI文件类型 2.双击安装 此处如勾选,则会影响安装速度, ...

  7. CentOS6上ftp服务器搭建实战

    1.安装程序包 [root@node1 ~]$ yum install -y vsftpd[root@node1 ~]$ yum install -y lftp # 安装测试软件 2.启动vsftpd ...

  8. prometheus热重启

    prometheus启动命令添加参数 --web.enable-lifecycle 然后热重启:curl -XPOST http://localhost:9090/-/reload

  9. 锯齿状优惠券css绘制

    对于图上优惠券左右两侧的半圆锯齿效果,两种处理方式,一种直接使用切图进行处理,一种是纯css进行效果绘制.切图的就不再赘述,主要说纯css效果绘制 绘制的结果如下图: 难点在于两侧的半圆孔是透明色,不 ...

  10. [hdu P3085] Nightmare Ⅱ

    [hdu P3085] Nightmare Ⅱ Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Oth ...