摘要: 通过观察递归实现,用循环和栈模拟递归实现中结点入栈和出栈的过程。 #include <bits/stdc++.h> #define DBG(x) cerr << #x << " = " << x << endl using namespace std; typedef long long LL; s 阅读全文
posted @ 2019-12-29 17:39 ToRapture 阅读(184) 评论(0) 推荐(0) 编辑
摘要: https://leetcode.com/problems/median-of-two-sorted-arrays/ 函数$kth$表示归并两个数组时得到的第$k$个元素,函数的计算过程为,每次从$A$或$B$数组的其中一个数组中,找出$p$个元素,这$p$个元素不大于归并得到的第$k$个元素,接着 阅读全文
posted @ 2019-12-29 15:01 ToRapture 阅读(136) 评论(0) 推荐(0) 编辑