Unverified Commit e5cad108 authored by Baron Hou's avatar Baron Hou Committed by GitHub
Browse files

修复了递归 & 分治页面的一个注释

parent d3f79532
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -79,7 +79,7 @@ int size(Node *head) {
  return size;
}

// 递归天下一
// 递归天下
int size_recurison(Node *head) {
  if (head == nullptr) return 0;
  return size_recurison(head->next) + 1;