函数接收的值与传递的值不同

时间:2018-12-13 08:00:45

标签: c++ function c++14 depth-first-search

我使用C ++为DFS写了一个简单的代码,但是我传递的值和函数接收的值是不同的。打印该功能接收到的值。

你能帮我吗?

#include <bits/stdc++.h>

using namespace std;

void dfs(int i, int j);
char graph[51][51];
int n, m, loop = 0, inx, iny, completed = 0;

int main() {
  ios_base::sync_with_stdio(false);
  cin.tie(0);
  cout.tie(0);
  int i, j, k, a, b, c;
  cin >> n >> m;

  for (i = 1; i <= n; i++) {
    for (j = 1; j <= m; j++) {
      cin >> graph[i][j];
    }
  }

  for (i = 1; i <= n, completed == 0; i++) {
    for (j = 1; j <= m, completed == 0; j++) {
      inx = i;
      iny = j;
      dfs(i, j);
    }
  }

  if (completed == 1)
    cout << "YES\n";
  else
    cout << "NO\n";

  return 0;
}

void dfs(int i, int j) {
  cout << i << " " << j << "\n"; // for checking values taken by the function

  if (completed)
    return;

  if (i == inx && j == iny) {
    if (loop >= 4)
      completed = 1;
    return;
  }

  // loop will increase exponentially !!!!!!
  int k = loop;
  if (j < m && graph[i][j] == graph[i][j + 1]) {
    loop++;
    dfs(i, j + 1);
  }

  loop = k;
  if (j > 1 && graph[i][j] == graph[i][j - 1]) {
    loop++;
    dfs(i, j - 1);
  }

  loop = k;
  if (i > 1 && graph[i][j] == graph[i - 1][j]) {
    loop++;
    dfs(i - 1, j);
  }

  loop = k;
  if (i < n && graph[i][j] == graph[i + 1][j]) {
    loop++;
    dfs(i + 1, j);
  }
}

如果有人感兴趣,我会尝试this question

1 个答案:

答案 0 :(得分:1)

至少部分问题是您不了解运算符在C ++中的工作方式。

  

for(i = 1; i <= n,completed == 0; i ++){

表达式i<=n,completed==0的作用是评估i <= n,丢弃结果,然后评估completed == 0并给出结果。

因此,循环的结束条件本质上是completed == 0in之间的关系不会影响循环的执行。

当然也存在其他问题,但我没有进一步研究。

Read about comma operator