浏览器标题切换
浏览器标题切换end
摘要: ##题目链接 https://leetcode-cn.com/problems/reverse-linked-list/ ##复杂度 时间复杂度:O(n) 空间复杂度:O(1) ##思路 见下面参考即可。可以用迭代法或者递归,上篇文章写的两种都有,本文只写递归解法。 ##注意 注意 . 和 → 的写 阅读全文
posted @ 2021-03-14 16:01 抓水母的派大星 阅读(63) 评论(0) 推荐(0) 编辑
摘要: ##题目链接 https://vjudge.net/problem/HihoCoder-1371 ##迭代法 #include<bits/stdc++.h> using namespace std; // 迭代法 struct node { int w; node *nex; node(int w) 阅读全文
posted @ 2021-03-14 15:31 抓水母的派大星 阅读(41) 评论(0) 推荐(0) 编辑