Fix access error when printArray(arr, 0) (#432)

* fix(codes/cpp): Memory leak fix: the space was not freed when pop removed the element.

* fix(codes/cpp): Fix access error when printArray(arr, 0)

* Update PrintUtil.hpp

---------

Co-authored-by: Yudong Jin <krahets@163.com>
pull/436/head
Gonglja 2 years ago committed by GitHub
parent e539c44f63
commit b9e97d3823
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -102,7 +102,7 @@ class PrintUtil {
for (int i = 0; i < n - 1; i++) {
cout << arr[i] << ", ";
}
if (n>=1)
if (n >= 1)
cout << arr[n - 1] << "]" << endl;
else
cout << "]" << endl;

Loading…
Cancel
Save