Code Monkey home page Code Monkey logo

simple_graph.py's Introduction

simple_graph

a collection of simple graph algorithms in Python 3, NOT DEBUGGED

simple_graph.py's People

Contributors

factal avatar

Stargazers

jumango avatar

Watchers

 avatar

simple_graph.py's Issues

辺や頂点の削除が容易でない

現在の Graph のデータ構造は、辺と頂点との関係をメモリへのオーバーヘッド軽減の観点から隣接リストを改変した方式で管理しているが、これによって Vertex 及び Edge に隣接/接続情報が分散し、辺と頂点セットで削除する場合にはおよそ O(V^2+VE) の計算量を要してしまう。すなわち、辺や頂点の削除には以下のような処理が伴う:

  1. Graph.vertices 内の全要素を走査し、Vertex.adj_vertices 及び Vertex.connected_edges 内に含まれる削除対象への参照を削除する
  2. Graph.vertices 及び Graph.edges 内から削除対象のインスタンスを削除する
  3. Graph.vertices 内の Vertex.index を更新する

しかし、これらは Vertex.adj_vertices や Vertex.connected_edges を集合で管理することで O(V+E) にまで改善できるかもしれない。更に Graph.vertices, Graph.edges も集合で扱うことができれば O(1) での操作が可能になるかもしれないが、辺の追加や隣接行列への変換が Graph.vertices の順序構造に依存している以上実装は難しい(と思われる)。

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.