warning C4715: not all control paths return a value c++

前端 未结 2 849
我寻月下人不归
我寻月下人不归 2021-01-29 11:39

i made two functions, one to find and return smallest key in a red - black tree and the other one returns a pointer to a particular node with that node\'s key as input.These fun

2条回答
  •  無奈伤痛
    2021-01-29 11:52

    In if (ptr->left != NULL) you fail to return a value, as the compiler says. You need to return a value.

提交回复
热议问题