摘要:
参考博客:(14条消息) 【Netty整理01-快速入门】Netty简单使用Demo(已验证)_the_fool_的博客-CSDN博客 https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzkyMzIzNjIxMg==&action=getalbum&alb 阅读全文
摘要:
Server.java package com.hmb; import java.io.IOException; import java.io.InputStreamReader; import java.io.Reader; import java.net.ServerSocket; import 阅读全文
摘要:
参考精选博客:https://blog.csdn.net/whatday/article/details/95926766 uthash.h /* * Copyright (c) Huawei Technologies Co., Ltd. 2020-2020. All rights reserved 阅读全文
摘要:
参考:https://blog.csdn.net/a123441/article/details/90374650 utlist.h获取(可直接粘贴):https://gitee.com/yanbib/libcoap2/blob/master/utlist.h 使用手册(暂时只找到uthash的): 阅读全文
摘要:
1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <stdbool.h> 4 #include <string.h> 5 6 #define NUM 3 7 8 typedef struct { 9 int a; 10 int b; 11 } 阅读全文
摘要:
参考链接:https://zhuanlan.zhihu.com/p/77074009 阅读全文
摘要:
遇到内存溢出,把所有使用数组元素前的判断条件都添加上下标的上下限越界判断。 (*returnSize)++,括号不能少 debug时可以直接在LeetCode上printf debug 执行代码时可以改变输入用例 ,说明下标越界 memset,memcpy的第三个参数为整个buffer的大小 回溯从 阅读全文
摘要:
右下角调成GB 2312 阅读全文
摘要:
题目来源:LeetCode739 1 // 链表节点 2 typedef struct Node { 3 int value; // 气温 4 int index; // 下标 5 struct Node *next; 6 } pNode; 7 8 // 栈 9 typedef struct MyS 阅读全文
摘要:
参考博客:https://blog.csdn.net/qq_36982160/article/details/81260273 参考github:https://github.com/ZhaoYukai/HeartRate 如果运行时出现Program type already present: a 阅读全文