⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 flowlist.h

📁 跑leach需要的
💻 H
字号:
#include<stdio.h>#define hop_limit 50struct flow_list{double time;double bw;struct flow_list *next;};struct flow_event{  double delay;  double deltaCBR;  double NetCBR;};struct flow_list *create_new_flow_event(double time, double bw);void flow_list_insert(double time, double bw, struct flow_list **root);void dump_flow_list_to_file(FILE* file, struct flow_list *root);int get_no_events(struct flow_list *root);struct flow_event* get_all_events(struct flow_list *root);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -