02 2022 档案
摘要:用到了BM1的思路。 #include <stdio.h> struct ListNode { int val; struct ListNode *next; }; struct ListNode* reverseBetween(struct ListNode* head, int m, int n
阅读全文
摘要:#include <stdio.h> struct ListNode { int val; struct ListNode *next; }; struct ListNode* ReverseList(struct ListNode* pHead ) { if (pHead == NULL) ret
阅读全文
摘要:参考:https://www.zhihu.com/question/57929023 // riffID 4 Chunk ID: RIFF // cksize 4 Chunk size: 4 + 24 + (8 + M*Nc*Ns + (0 or 1) // WAVEID 4 WAVE ID: WA
阅读全文