【ceph运维】使用ceph管理器crash模块

使用ceph管理器crash模块

解法:

class Solution {
public:
    ListNode* swapPairs(ListNode* head) {
        if (head == nullptr || head->next == nullptr) {
            return head;
        }
        ListNode* newHead = head->next;
        head->next = swapPairs(newHead->next);
        newHead->next = head;
        return newHead;
    }
};

 

参加资料

1. 使用 Ceph 管理器 crash 模块

posted @ 2022-05-30 21:03  苏格拉底的落泪  阅读(39)  评论(0)    收藏  举报