会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Violet
博客园
首页
新随笔
联系
订阅
管理
1
2
3
4
5
···
9
下一页
2023年11月18日
Optimized Content Caching and User Association for Edge Computing in Densely Deployed Heterogeneous Networks论文阅读
摘要: 目录Optimized Content Caching and User Association for Edge Computing in Densely Deployed Heterogeneous Networks1、问题背景贡献点:2、系统建模及问题公式化系统建模问题公式化联合内容缓存和用户
阅读全文
posted @ 2023-11-18 22:17 wsl_lld
阅读(63)
评论(0)
推荐(0)
2022年12月31日
POSIX多线程编程实例
摘要: #include <stdio.h> #include <stdlib.h> #include <time.h> #include <unistd.h> #include <pthread.h> #include <string.h> #define NUM 3 pthread_mutex_t mu
阅读全文
posted @ 2022-12-31 16:50 wsl_lld
阅读(53)
评论(0)
推荐(0)
2022年3月2日
WSJ0数据集处理。原.wv数据集转换.wav方式
摘要: 需要的工具: wsj0原数据集(LDC93S6A 或者 LDC93S6B) python3 sph2pipe python code: FOR LDC93S6B: """ # example: # 11-1.1/wsj0/si_tr_s/01t/01to030v.wv1 is converted t
阅读全文
posted @ 2022-03-02 15:31 wsl_lld
阅读(1803)
评论(6)
推荐(1)
2021年10月22日
The 2020 ICPC Asia Taipei-Hsinchu Site Programming Contest I题Critical Structures
摘要: 原题链接Critical Structures #include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int,int> pii; #define mp make_pair #define ne
阅读全文
posted @ 2021-10-22 12:42 wsl_lld
阅读(112)
评论(0)
推荐(0)
2021年7月31日
网络流时间复杂度
摘要: 转载于:https://www.cnblogs.com/aurora2004/p/12619977.html
阅读全文
posted @ 2021-07-31 16:31 wsl_lld
阅读(163)
评论(0)
推荐(0)
2021年5月29日
嵌入式系统——使用GPIO固件库综合编程(通过按键控制LED灯与蜂鸣器的状态)
摘要: led.h #ifndef LED_H #define LED_H #include "stm32f4xx.h" typedef enum LED_ID_T{ LED_D1 = 1, LED_D2, LED_D3, LED_D4 } LED_ID; void led_init(void); void
阅读全文
posted @ 2021-05-29 16:09 wsl_lld
阅读(846)
评论(0)
推荐(0)
2021年5月24日
嵌入式系统——使用STM32的GPIO固件库编程实现简单按键触发流水灯
摘要: LED.h #ifndef LED_H #define LED_H #include "stm32f4xx.h" typedef enum LED_ID_T{ LED_D1 = 1, LED_D2, LED_D3, LED_D4 } LED_ID; void led_init(void); void
阅读全文
posted @ 2021-05-24 14:33 wsl_lld
阅读(843)
评论(0)
推荐(0)
图论——线段树优化建图
摘要: 链接:CF786B Legacy 题意: 有一个n个节点的有向有权图 有三种类型的边: 1.从u到v的一条边权为w的边 2.从u到区间[l,r]任意一个点都有一条边权为w的边 3.从区间[l,r]中任意一个点到v点都有一条边权为w的边 求从点1到其他所有点的最短路。若不可达,则输出-1 题解: 第一
阅读全文
posted @ 2021-05-24 13:22 wsl_lld
阅读(113)
评论(0)
推荐(0)
2021年5月20日
嵌入式系统——基于Keil5的STM32固件库寄存器编程实现流水灯
摘要: //PF9-LED0,PF10-LED1 //PF13-LED2,PF14-LED3 #define rRCCAHB1CLKEN *((volatile unsigned long *) 0x40023830) #define rGPIOF_MODER *((volatile unsigned lo
阅读全文
posted @ 2021-05-20 20:10 wsl_lld
阅读(915)
评论(0)
推荐(0)
2021年4月9日
字符串:序列自动机
摘要: 序列自动机: 原理:用一个数组nxt[i][j]表示字符串从i下标开始的最近的 c = j + 'a' 这个字符出现的位置 举个例子: s = "abcca" (默认下标为1-5) nxt[0][0] = 1,即字符串中出现的第一个字符'a'的位置为1 nxt[1][1] = 2,即字符串距离下标1
阅读全文
posted @ 2021-04-09 22:26 wsl_lld
阅读(87)
评论(0)
推荐(0)
1
2
3
4
5
···
9
下一页
公告