0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

neo4jでsandbox その4

Last updated at Posted at 2020-10-02

概要

neo4jでsandboxやってみた。
最短経路、やってみた。

参考にしたページ

写真

image.png

nodeとrelasionを投入。

CREATE (p1:Point {name:"p1"}), 
	(p2:Point {name:"p2"}), 
	(p3:Point {name:"p3"}), 
	(p4:Point {name:"p4"}), 
	(p5:Point {name:"p5"}),
	(p1)-[:Route {weight:7}]->(p2), 
	(p1)-[:Route {weight:5}]->(p3), 
	(p1)-[:Route {weight:8}]->(p4), 
	(p1)-[:Route {weight:9}]->(p5), 
	(p2)-[:Route {weight:3}]->(p3), 
	(p2)-[:Route {weight:2}]->(p4), 
	(p2)-[:Route {weight:1}]->(p5), 
	(p3)-[:Route {weight:4}]->(p4), 
	(p3)-[:Route {weight:7}]->(p5), 
	(p4)-[:Route {weight:9}]->(p5);

p1からp5の最短経路を求める。

MATCH g = (:Point {name:"p1"})-[:Route*]-(:Point {name:"p5"})
RETURN g, REDUCE(weight = 0, r in RELATIONSHIPS(g) | weight + r.weight) AS score
ORDER BY score ASC
LIMIT 1;

以上。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?