プログラミング
 Computer >> コンピューター >  >> プログラミング >> プログラミング

オイラー路と回路


オイラーパスは、すべてのエッジを1回だけ訪問できるパスです。同じ頂点を複数回使用できます。オイラー回路は、特殊なタイプのオイラーパスです。オイラーパスの開始頂点がそのパスの終了頂点にも接続されている場合、それはオイラー回路と呼ばれます。

オイラー路と回路

パスと回路を検出するには、次の条件に従う必要があります-

  • グラフを接続する必要があります。
  • ちょうど2つの頂点の次数が奇数の場合、それはオイラーパスです。
  • 無向グラフの頂点の次数が奇数でない場合、それはオイラー回路です。

入力と出力

Input:
Adjacency matrix of a graph.
0 1 1 1 0
1 0 1 0 0
1 1 0 0 0
1 0 0 0 1
0 0 0 1 0

Output:
The graph has an Eulerian path.

アルゴリズム

traverse(u、visited)

入力: 開始ノードuと訪問済みノードは、どのノードが訪問されたかをマークします。

出力- 接続されているすべての頂点をトラバースします。

Begin
   mark u as visited
   for all vertex v, if it is adjacent with u, do
      if v is not visited, then
         traverse(v, visited)
   done
End

isConnected(グラフ)

入力- グラフ。

出力- グラフが接続されている場合はTrue。

Begin
   define visited array
   for all vertices u in the graph, do
      make all nodes unvisited
      traverse(u, visited)
      if any unvisited node is still remaining, then
         return false
   done
   return true
End

isEulerian(グラフ)

入力- 与えられたグラフ。

出力- オイラーでない場合は0を返し、オイラーパスがある場合は1を返し、オイラー回路が見つかった場合は2を返します

Begin
   if isConnected() is false, then
      return false
   define list of degree for each node
   oddDegree := 0

   for all vertex i in the graph, do
      for all vertex j which are connected with i, do
         increase degree
      done
      if degree of vertex i is odd, then
         increase dooDegree
   done

   if oddDegree > 2, then
      return 0
   if oddDegree = 0, then
      return 2
   else
      return 1
End

#include<iostream>
#include<vector>
#define NODE 5
using namespace std;

int graph[NODE][NODE] = {
   {0, 1, 1, 1, 0},
   {1, 0, 1, 0, 0},
   {1, 1, 0, 0, 0},
   {1, 0, 0, 0, 1},
   {0, 0, 0, 1, 0}
};
                               
/* int graph[NODE][NODE] = {
   {0, 1, 1, 1, 1},
   {1, 0, 1, 0, 0},
   {1, 1, 0, 0, 0},
   {1, 0, 0, 0, 1},
   {1, 0, 0, 1, 0}
};
*/    //uncomment to check Euler Circuit
                               
/* int graph[NODE][NODE] = {
   {0, 1, 1, 1, 0},
   {1, 0, 1, 1, 0},
   {1, 1, 0, 0, 0},
   {1, 1, 0, 0, 1},
   {0, 0, 0, 1, 0}
};
*/    //Uncomment to check Non Eulerian Graph
               
void traverse(int u, bool visited[]) {
   visited[u] = true;    //mark v as visited

   for(int v = 0; v<NODE; v++) {
      if(graph[u][v]) {
         if(!visited[v])
            traverse(v, visited);
      }
   }
}

bool isConnected() {
   bool *vis = new bool[NODE];
   //for all vertex u as start point, check whether all nodes are visible or not
   for(int u; u < NODE; u++) {
      for(int i = 0; i<NODE; i++)
         vis[i] = false;    //initialize as no node is visited
               
      traverse(u, vis);
         
      for(int i = 0; i<NODE; i++) {
         if(!vis[i])    //if there is a node, not visited by traversal, graph is not connected
            return false;
      }
   }
   return true;
}

int isEulerian() {
   if(isConnected() == false)    //when graph is not connected
      return 0;
   vector<int> degree(NODE, 0);
   int oddDegree = 0;

   for(int i = 0; i<NODE; i++) {
      for(int j = 0; j<NODE; j++) {
         if(graph[i][j])
            degree[i]++;    //increase degree, when connected edge found
      }

      if(degree[i] % 2 != 0)    //when degree of vertices are odd
         oddDegree++; //count odd degree vertices
   }

   if(oddDegree > 2)    //when vertices with odd degree greater than 2
      return 0;
         
   return (oddDegree)?1:2;    //when oddDegree is 0, it is Euler circuit, and when 2, it is Euler path
}

int main() {
   int check;
   check = isEulerian();

   switch(check) {
      case 0: cout << "The graph is not an Eulerian graph.";
         break;
      case 1: cout << "The graph has an Eulerian path.";
         break;
      case 2: cout << "The graph has a Eulerian circuit.";
         break;
   }
}

出力

The graph has an Eulerian path.

  1. 無向グラフにオイラーパスが含まれているかどうかを確認するC++プログラム

    オイラーパスはパスです。これにより、すべてのノードに1回だけアクセスできます。同じエッジを複数回使用できます。オイラー回路は、特殊なタイプのオイラーパスです。オイラーパスの開始頂点がそのパスの終了頂点にも接続されている場合。 オイラーパスを検出するには、これらの条件に従う必要があります グラフを接続する必要があります。 無向グラフの頂点の次数が奇数でない場合、それはオイラー回路であり、これも1つのオイラーパスです。 ちょうど2つの頂点の次数が奇数の場合、それはオイラーパスです。 入力 出力 両方のグラフにオイラーパスがあります。 アルゴリズム traverse(u、visite

  2. PowerPointでモーションパスアニメーションを作成および追加する方法

    PowerPointでは、モーションパスアニメーションをオブジェクトに適用できます。モーションパスを使用すると、ユーザーはストーリーを伝えることができるシーケンスでオブジェクトを移動できます。パスを回転させることもできます。 PowerPointプレゼンテーションのモーションパスとは何ですか? PowerPointモーションパスを使用すると、オブジェクトを順番に移動してストーリーを伝えることができます。テキスト、図形、画像などのオブジェクトに適用できます。モーションパスを使用して、スライド上の特定の方法で要素を移動します。 モーションパスはどのようなオブジェクトに適用できますか?