通过Depth First Search节点连接到自身。 C ++

时间:2017-03-11 03:28:37

标签: c++ graph linked-list adjacency-list dfs

制定解决浇筑问题的计划:

我相信我最后一期。我的数据结构如下: 我有一个Node指针向量,每个节点包含一个int数组,以及一个到下一个节点的地址。在测试一切功能正常。该数据结构的目标基本上是作为邻接列表。每个节点都链接到它将具有边缘的节点。

目前我的问题是当我尝试将这些节点相互链接时: 我所拥有的LinkState函数应该实现这一点,但它会导致程序永远运行。

该函数应该简单地遍历单个节点链表并找到连接新节点的位置。相反,它导致节点不断泄漏自身......导致运行时问题。

很抱歉,如果这有点令人困惑。任何帮助将不胜感激。

P.S。我知道有更好的方法来解决像BFS这样的问题,我想坚持使用DFS。

#ifndef _POURINGLIST_H_
#define _POURINGLIST_H_
#include <iostream>
#include <vector>
#include <math.h>
using namespace std;
 struct Node{
    int state[3];
    Node* next = NULL;
  };
class PouringList{
  Node* init;
  vector<Node*> Head;
  int max[3];
  int steps;
public:
  PouringList(){
    //max values for comaprison
    max[0] = 10;
    max[1] = 7;
    max[2] = 4;
    //init values to begin DFS
    init = new Node;
    init->state[0] = 0;
    init->state[1] = 7;
    init->state[2] = 4;
  };
//private methods not to be called by user
private:
  //pours some good old h2o
  Node pour(Node* curr_state, int A, int B){
    int a = curr_state->state[A];
    int b = curr_state->state[B];
    int change = min(a, max[B]-b);
    Node newState = *curr_state;
    newState.state[A] = (a-=change);
    newState.state[B] = (b+=change);
    return newState;
  }
  //O(n) complexity used to check if a node is already in head 
  bool isIn(Node* find_me){
    for(vector<Node*>::iterator i = Head.begin(); i != Head.end(); i++) {
      if (equal(begin(find_me->state), end(find_me->state), begin((*i)->state)))
        return true;
      }
    return false;
  }
  void printNode(Node* print){
    for(int i = 0; i < 3; i++){
      cout << print->state[i] << " ";
    }
    cout << endl;
  }

  int locate(Node* find_me){
    for(vector<Node*>::iterator i = Head.begin(); i != Head.end(); i++) {
      if (equal(begin(find_me->state), end(find_me->state), begin((*i)->state)))
        return distance(Head.begin(), i);
      }
    return -1;
  }
  void LinkState(Node* head, Node * nxt){
    Node* vert = Head[locate(head)];
    while(vert->next != NULL){
      vert = vert->next;
    }
    vert->next = nxt;
  }
public:
  void DFS(){
    steps = 0;
    //start exploring at initial value
    explore(init);
  }
  void explore(Node* vertex){
    //base case to end
    if(!isIn(vertex)){
      Head.push_back(vertex);
      if(vertex->state[1] == 2 || vertex->state[2] == 2){
        cout << steps << endl;
        printNode(vertex);
        return;
      }
      //generate all possible states and connects them to Head vertex
      else{
        for(int i = 0; i < 3; i++){
          for(int j = 0; j < 3; j++){
            Node conn1 = pour(vertex,i,j);
            Node *conn = &conn1;
            if(i!=j && !isIn(conn)){
              cout << i << " adds water to " << j << endl;
              LinkState(vertex, conn);
            }
          }
        }
      }

      Node* Nextex = vertex;
      //printNode(vertex);
      while(Nextex != NULL){
        //new neighbor
        if(!isIn(Nextex)){
          //printNode(Nextex);
          explore(Nextex);
        }
        Nextex = Nextex->next;
      }
    }
        //printNode(Nextex);
    else{
      cout <<"Dead end" << endl;
    }
  }

  //start from init node and show path to solution
  void display(){
    Node *output;
    for(int i = 0; i < Head.size(); i++){ 
      output = Head[i];
      while ( output != NULL){
        printNode(output);
        output = output->next;
      }
      cout << '#'  <<endl;
    }
  }
};
#endif  // _POURINGLIST_

基本驱动程序:

#include "PouringList.h"
int main(){
    PouringList s1;
    s1.DFS();

}

修改

我之前尝试过建议的解决方法(这就是我假设的意思)。它仍然导致编程永远运行。另外,我不太了解智能指针去检修应用程序!

Node conn1 = pour(vertex,i,
Node *conn = new Node;
conn = &conn1;

1 个答案:

答案 0 :(得分:1)

您正在列表中存储本地变量的地址。

explore中,您有

        Node conn1 = pour(vertex,i,j);
        Node *conn = &conn1;

然后将conn传递给LinkStateNode将指针存储在PouringList中。所有添加的节点都将指向相同的内存地址。

你应该做的是分配一个新的$sqli = "INSERT INTO posts (title, dateposted, content, tags) VALUES ('" . $title ."', '" . $dateposted . "', '" . $content . "', '". $tags . "')"; 并使用它(最好使用某种智能指针,而不是存储原始指针,以便自动清理)。