hahaxixiwx
hahaxixiwx
全部文章
分类
小知识点(4)
题解(19)
归档
标签
去牛客网
登录
/
注册
hahaxixibx
野蛮生长,无畏去爱
全部文章
(共1篇)
用循环链表写约瑟夫环(含stl栈stack用法)
约瑟夫环 #include <iostream> #include <stack> using namespace std; struct Node{//定义一个结点 int data; struct Node* next; }; int main(){ ...
C++
C
链表
栈
2022-01-05
4
447