Giter VIP home page Giter VIP logo

graphbase's People

Contributors

longbinlai avatar zhengyi-yang avatar

Watchers

 avatar  avatar

graphbase's Issues

BFS and DFS Interator

Now there is a need to implement two kinds of iterators for the graph, a.k.a BfsIterator and DfsIterator, both implements Iterator interface.

You need to implement the function next() in the iterator, and by calling next() iteratively, we can get the traversal order (BFS, or DFS) correspondingly.

Note that in terms of space efficient, you may not maintain the bfs (and dfs) traversal results in advance. In addition, the graph may not be necessarily connected.

Java8 new feature

As we are moving to Java8, we should start programming with new Java 8 features. For example, we have the nice lambda function, which can purify your code a lot.

For example, if we have a Collection integers, and we want to print everything out, we can simply do:

integers.foreach(e -> {System.out.println(e);});

Can we re-implement the codes of remove (edges, vertices) etc. wherever you iterate the graph to do some operation to this kind of lambda function?

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.