求俩个数之和

2016-10-14  本文已影响7人  宇文黎琴

原题:

Given an array of integers, return indices of the two numbers such that they add up to a specific target.
You may assume that each input would have exactly one solution.

这个题目很简单,错误点是函数的返回值,题目要求返回的是数组

我所犯下的错误的现象是,返回的数组的第一个值是正确的,第二个的值是乱码。

C 不支持在函数外返回局部变量的地址,除非定义局部变量为 static 变量。
原因在这里

我们需要了解变量的作用域和生命期

上一篇 下一篇

猜你喜欢

热点阅读