ت20181024193444
ت20181024193444
全部文章
分类
归档
标签
去牛客网
登录
/
注册
ت20181024193444的博客
全部文章
(共2篇)
题解 | #【模板】堆#
#include <stdio.h> #include <stdlib.h> #include <string.h> //void print(int* h, int len){ // // printf("\n"); // for(int i=0;...
2023-03-31
0
296
题解 | #链表内指定区间反转#
struct ListNode* reverseBetween(struct ListNode* head, int m, int n ) { if(m==n){ return head; } // else struct ListNode* p; ...
2023-03-30
0
245