摘要:
##题目链接 https://leetcode-cn.com/problems/reverse-linked-list/ ##复杂度 时间复杂度:O(n) 空间复杂度:O(1) ##思路 见下面参考即可。可以用迭代法或者递归,上篇文章写的两种都有,本文只写递归解法。 ##注意 注意 . 和 → 的写 阅读全文
摘要:
##题目链接 https://vjudge.net/problem/HihoCoder-1371 ##迭代法 #include<bits/stdc++.h> using namespace std; // 迭代法 struct node { int w; node *nex; node(int w) 阅读全文