news 2026/4/15 12:10:42

中国计算机学会(CCF)推荐学术会议-A(计算机网络):SIGCOMM 2026

作者头像

张小明

前端开发工程师

1.2k 24
文章封面图
中国计算机学会(CCF)推荐学术会议-A(计算机网络):SIGCOMM 2026

SIGCOMM 2026

ACM SIGCOMM is the flagship annual conference of the ACM Special Interest Group on Data Communication (SIGCOMM). ACM SIGCOMM 2026, the 40th edition of the conference series, will be held in Denver, Colorado, USA.

重要信息

CCF推荐:A(计算机网络)

录用率:16.1%(74/461,2025年)

时间地点:时间待定-丹佛·美国

截稿时间:2026年2月6日

大会官网:https://conferences.sigcomm.org/sigcomm/2026/

Call for Papers

All types of computer networks,including mobile, wide-area, data center, embedded, home, and enterprise networks.

All types of wired and wireless technologies, including optics, radio, acoustic, and visible light-based communication.

All aspects of networks and networked systems, such as network architecture, packet-switched and circuit-switched hardware and software, virtualization, mobility, resource management, performance, energy consumption and environmental impact, topology, robustness, security, diagnosis, verification, privacy, economics, evolution, and interactions with applications.

All parts of the network life cycle, including planning, designing, building, operating, troubleshooting, migrations, and end-of-life.

All approaches and techniques applied to networking, including theory, analysis, experimentation, and AI/machine learning.

Submissions

Submissions should be in two-column, 10-point format, and can be up to 12 pages in length with as many additional pages as necessary for references and optional appendices.

Submissions and final papers may include appendices (following references, not counting against the 12 pages). Reviewers are not required to read appendices or consider them in their review. Authors should thus ensure that the core paper is complete and self-contained. For example, if the appendix provides details of a proof or experiment, the body should summarize the key result. Appendices may also include non-traditional material, such as videos, datasets, and code, all appropriately anonymized.

版权声明: 本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:809451989@qq.com进行投诉反馈,一经查实,立即删除!
网站建设 2026/4/9 21:27:48

工业运维的迭代:从“坏了才修“到“未坏先知”

回想第一次, 我们用AI预测出一台空压机的机头将在一周后故障, 我们忐忑的拆开设备做检查,发现机头转子真的被严重磨损了 那一刻,我知道,这项技术能改变行业 蘑菇物联的工业AI模型,不是PPT,而…

作者头像 李华
网站建设 2026/4/2 9:38:06

deepseek_markdown_20260108_c5cec3

炒股八条铁律:从泥地里爬出的交易者分享 不管你现在是用五万还是五百万炒股,如果你决定把炒股当成你的终身事业,想在接下来这轮牛市当中实现换车换房,那你就要把我今天分享的八条铁律背得滚瓜烂熟,做到知行合一。 这八…

作者头像 李华
网站建设 2026/4/14 12:32:30

掌握Gerber文件查看的终极指南:从入门到精通

掌握Gerber文件查看的终极指南:从入门到精通 【免费下载链接】gerbv Maintained fork of gerbv, carrying mostly bugfixes 项目地址: https://gitcode.com/gh_mirrors/ge/gerbv 在PCB设计和电子制造领域,Gerber文件作为标准的制造文件格式&#…

作者头像 李华
网站建设 2026/3/26 12:58:04

Python实现斐波那契数列的两种方法

Python代码实现斐波那契数列def fibonacci(n):if n < 0:return []elif n 1:return [0]elif n 2:return [0, 1]fib_sequence [0, 1]for i in range(2, n):next_num fib_sequence[-1] fib_sequence[-2]fib_sequence.append(next_num)return fib_sequence# 示例用法 print…

作者头像 李华
网站建设 2026/4/10 14:23:32

基于 51 的数码管大气压强检测系统:打造实用的气压监测利器

基于51的数码管大气压强检测系统 项目简介: 实时显示大气压力值&#xff0c;当超过设定阈值后&#xff0c;有声光报警提示。 探测范围:15-115kpa,误差0.3。 项目器件: 数码管、STC89C51/52、ADC0832数模转换芯片 项目算法&#xff1a;气压与电压的线性转换关系&#xff0c;注释…

作者头像 李华
网站建设 2026/4/2 14:30:24

基于极限学习机(ELM)的单变量时间序列数据预测

基于极限学习机(ELM)的单变量时间序列的数据预测 ELM matlab代码注&#xff1a;暂无Matlab版本要求 -- 推荐 2018B 版本及以上在数据预测领域&#xff0c;极限学习机&#xff08;ELM&#xff09;凭借其快速的学习速度和良好的泛化性能备受关注。今天咱就唠唠基于ELM的单变量时间…

作者头像 李华