• 2025-01-05大一计算机的自学总结:单双链表的反转
    前言为了减少单个文件里的代码量(懒),于是将能用到的函数都写进一个.h文件里了。其中大部分函数都在我“初见链表”的文章里写过了。#include<bits/stdc++.h>usingnamespacestd;typedefstructnode{ intvalue; structnode*next;}Node;typedefstructnodeD{