Giter Club home page Giter Club logo

json-parser's Introduction

Json Parser

A simple json parser created as part the https://codingchallenges.fyi/challenges/challenge-json-parser by John Crickett.

Approach

The parser uses a Deque as the LIFO data structure for remembering the previous state. A JsonNode is an interface as below.

public interface JsonNode {
    public int getDepth();
    public void setDepth(int depth);
    public boolean isArray();
    public boolean isElement();
    public int getIndex();
    public void setIndex(int index);
}

The interface is implemented by the following concrete classes. (The class code is truncated for brevity here).

1. JsonElement - Represents the json syntactical tokens( { } [ ] , : etc), simple string or number literals.

public class JsonElement implements JsonNode {
    private String data;
    private JsonSymbol symbol;
    private int index;
}

2. JsonObject - Represents a json object which can have key-value pairs.

public class JsonObject extends HashMap<String, JsonNode> implements JsonNode {
    private int index;
    private int depth;
}

3. JsonArray - Represents a json array which can list of values(may be json objects, jsonarrays or simple tokens).

public class JsonArray extends ArrayList<JsonNode> implements JsonNode {
    private int index;
    private int depth;
}

The following image represents how the parsing is achieved for a simple json {"key":"value"}

json-parser's People

Contributors

sanjanarjn avatar

Stargazers

Jubril Olamide avatar ADITYA CHAKRABORTY avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.