上一页 1 2 3 4 5 6 7 ··· 20 下一页
摘要: 参考博客:(14条消息) 【Netty整理01-快速入门】Netty简单使用Demo(已验证)_the_fool_的博客-CSDN博客 https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzkyMzIzNjIxMg==&action=getalbum&alb 阅读全文
posted @ 2023-06-04 20:29 hemeiwolong 阅读(102) 评论(0) 推荐(0) 编辑
摘要: Server.java package com.hmb; import java.io.IOException; import java.io.InputStreamReader; import java.io.Reader; import java.net.ServerSocket; import 阅读全文
posted @ 2023-05-19 00:17 hemeiwolong 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 参考精选博客:https://blog.csdn.net/whatday/article/details/95926766 uthash.h /* * Copyright (c) Huawei Technologies Co., Ltd. 2020-2020. All rights reserved 阅读全文
posted @ 2021-09-08 23:08 hemeiwolong 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/a123441/article/details/90374650 utlist.h获取(可直接粘贴):https://gitee.com/yanbib/libcoap2/blob/master/utlist.h 使用手册(暂时只找到uthash的): 阅读全文
posted @ 2021-08-26 00:38 hemeiwolong 阅读(777) 评论(0) 推荐(0) 编辑
摘要: 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 } 阅读全文
posted @ 2020-11-05 23:33 hemeiwolong 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 参考链接:https://zhuanlan.zhihu.com/p/77074009 阅读全文
posted @ 2020-10-06 23:41 hemeiwolong 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 遇到内存溢出,把所有使用数组元素前的判断条件都添加上下标的上下限越界判断。 (*returnSize)++,括号不能少 debug时可以直接在LeetCode上printf debug 执行代码时可以改变输入用例 ,说明下标越界 memset,memcpy的第三个参数为整个buffer的大小 回溯从 阅读全文
posted @ 2020-08-30 13:35 hemeiwolong 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 右下角调成GB 2312 阅读全文
posted @ 2020-07-19 18:28 hemeiwolong 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 题目来源:LeetCode739 1 // 链表节点 2 typedef struct Node { 3 int value; // 气温 4 int index; // 下标 5 struct Node *next; 6 } pNode; 7 8 // 栈 9 typedef struct MyS 阅读全文
posted @ 2020-05-23 10:46 hemeiwolong 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 参考博客:https://blog.csdn.net/qq_36982160/article/details/81260273 参考github:https://github.com/ZhaoYukai/HeartRate 如果运行时出现Program type already present: a 阅读全文
posted @ 2020-05-15 23:12 hemeiwolong 阅读(1316) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 20 下一页