├── _config.yml ├── code ├── calc.cpp └── spider.py ├── genMarkdown.php ├── index.md ├── install.sql └── readme.md /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-cayman -------------------------------------------------------------------------------- /code/calc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugaosuni59/TH-CPL/a69e3eec06fd17f3264e4377d4aa296393fb017f/code/calc.cpp -------------------------------------------------------------------------------- /code/spider.py: -------------------------------------------------------------------------------- 1 | from selenium import webdriver 2 | import time 3 | import socket 4 | from selenium.webdriver.chrome.options import Options 5 | import requests 6 | 7 | chrome_options = Options() 8 | # chrome_options.add_argument('--no-sandbox') 9 | # chrome_options.add_argument('--headless') 10 | browser = webdriver.Chrome(chrome_options=chrome_options) 11 | pages = ["http://www.call4papers.cn/ccf/ccf-1.jsp", 12 | "http://www.call4papers.cn/ccf/ccf-2.jsp", 13 | "http://www.call4papers.cn/ccf/ccf-3.jsp", 14 | "http://www.call4papers.cn/ccf/ccf-4.jsp", 15 | "http://www.call4papers.cn/ccf/ccf-5.jsp", 16 | "http://www.call4papers.cn/ccf/ccf-6.jsp", 17 | "http://www.call4papers.cn/ccf/ccf-7.jsp", 18 | "http://www.call4papers.cn/ccf/ccf-8.jsp", 19 | "http://www.call4papers.cn/ccf/ccf-9.jsp", 20 | "http://www.call4papers.cn/ccf/ccf-10.jsp"] 21 | # pages = ["http://www.call4papers.cn/ccf/ccf-1.jsp"] 22 | 23 | f = open("out.txt", "w") 24 | for page in pages: 25 | browser.get(page) 26 | table = browser.find_elements_by_class_name('table-tr-content') 27 | # 包含table-tr-type就是有意义的行 28 | # 包含jname就是期刊 29 | # 先只爬会议吧 30 | # print(page) 31 | for e in table: 32 | arr=e.find_elements_by_class_name("table-tr-type") 33 | if len(arr)==1: 34 | arr2=e.find_elements_by_class_name("table-tr-si") 35 | if len(arr2)==1: 36 | f.write("$\n") 37 | else: 38 | f.write("$$\n") 39 | f.write(e.text+"\n"); 40 | # print(e.text); 41 | 42 | # browser.find_elements_by_xpath("//button[text()='start']")[0].click() 43 | browser.close() 44 | f.close() 45 | 46 | # browser.get("http://www.call4papers.cn/ccf/ccf-1.jsp") 47 | # r = requests.get("http://www.baidu.com/") 48 | # r.encoding = r.apparent_encoding 49 | # print(r.text) 50 | -------------------------------------------------------------------------------- /genMarkdown.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | query($sql); 23 | 24 | $sql ="SELECT * FROM category;"; 25 | 26 | $cat = array(); 27 | 28 | $result = $conn->query($sql);// 执行语句 29 | echo "## 分类类别

"; 30 | while($row=$result->fetch_assoc()){ 31 | array_push($cat,$row); 32 | } 33 | foreach($cat as $row){ 34 | echo $row['id'].". [".$row['name']."](#".$row['name'].")
"; 35 | } 36 | foreach($cat as $row){ 37 | echo "## ".$row['name']."
"; 38 | echo "名称|全称|截稿时间|结果时间|篇幅|官网
"; 39 | echo "-|-|-|-|-|-
"; 40 | echo "A类期刊| | | | |
"; 41 | $sql ="SELECT * FROM message WHERE cat=".$row['id']." and isTrans=1 and isA=1;"; 42 | $result = $conn->query($sql);// 执行语句 43 | while($i=$result->fetch_assoc()){ 44 | printf("%s|%s|%s|%s|%s|%s
",$i['name'],$i['fullname'],$i['deadline'],$i['restime'],$i['page'],$i['site']); 45 | } 46 | 47 | echo "B类期刊| | | | |
"; 48 | $sql ="SELECT * FROM message WHERE cat=".$row['id']." and isTrans=1 and isA=0;"; 49 | $result = $conn->query($sql);// 执行语句 50 | while($i=$result->fetch_assoc()){ 51 | printf("%s|%s|%s|%s|%s|%s
",$i['name'],$i['fullname'],$i['deadline'],$i['restime'],$i['page'],$i['site']); 52 | } 53 | 54 | echo "A类会议| | | | |
"; 55 | $sql ="SELECT * FROM message WHERE cat=".$row['id']." and isTrans=0 and isA=1;"; 56 | $result = $conn->query($sql);// 执行语句 57 | while($i=$result->fetch_assoc()){ 58 | printf("%s|%s|%s|%s|%s|%s
",$i['name'],$i['fullname'],$i['deadline'],$i['restime'],$i['page'],$i['site']); 59 | } 60 | 61 | echo "B类会议| | | | |
"; 62 | $sql ="SELECT * FROM message WHERE cat=".$row['id']." and isTrans=0 and isA=0;"; 63 | $result = $conn->query($sql);// 执行语句 64 | while($i=$result->fetch_assoc()){ 65 | printf("%s|%s|%s|%s|%s|%s
",$i['name'],$i['fullname'],$i['deadline'],$i['restime'],$i['page'],$i['site']); 66 | } 67 | 68 | } 69 | //echo "数据库表内容:
"; 70 | //echo ""; 71 | //echo ""; 72 | // echo ""; 73 | // echo ""; 74 | // echo ""; 75 | // echo ""; 76 | //echo ""; 77 | 78 | //while($row=$result->fetch_assoc()){ 79 | // echo ""; 80 | // echo ""; 81 | // echo ""; 82 | // echo ""; 83 | // echo ""; 84 | // echo ""; 87 | // echo ""; 88 | // echo ""; 89 | //} 90 | // 91 | // echo ""; 92 | // echo ""; 93 | // echo ""; 96 | // echo ""; 99 | // echo ""; 102 | // echo ""; 105 | // echo ""; 106 | // echo ""; 107 | //echo "
uid name pswd 删除
".$row['uid']."".$row['name']."".$row['pswd']."
"; 85 | // echo ""; 86 | // echo "
"; 94 | // echo ""; 95 | // echo ""; 97 | // echo ""; 98 | // echo ""; 100 | // echo ""; 101 | // echo ""; 103 | // echo ""; 104 | // echo "
"; 108 | // 109 | 110 | 111 | $conn->close(); 112 | ?> 113 | 114 | 115 | -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- 1 | # 清华大学计算机学科推荐学术会议和期刊列表 (TH-CPL) 个人整理 2 | 3 | ## 分类类别 4 | 5 | 1. [高性能计算](#高性能计算) 6 | 2. [计算机网络](#计算机网络) 7 | 3. [网络与信息安全](#网络与信息安全) 8 | 4. [理论计算机科学](#理论计算机科学) 9 | 5. [系统软件与软件工程](#系统软件与软件工程) 10 | 6. [数据库与数据挖掘](#数据库与数据挖掘) 11 | 7. [人工智能与模式识别](#人工智能与模式识别) 12 | 8. [计算机图形学与多媒体](#计算机图形学与多媒体) 13 | 9. [人机交互与普适计算 综合与交叉](#人机交互与普适计算综合与交叉) 14 | 15 | ## 高性能计算 16 | 名称|全称|截稿时间|结果时间|篇幅|官网 17 | -|-|-|-|-|- 18 | A类期刊| | | | | 19 | TOCS |ACM Transactlons on Computer Systems | | | | 20 | TPDS |IEEE Transactions on Parallel and Distributed Systems | | | | 21 | TC|IEEE Transactlons on Computers | | | | 22 | TCAD |IEEE Transactions On Computer-Aided Design Of Integrated Circults And Systems | | | | 23 | TOS |ACM Transactlons on Storage| | | | 24 | B类期刊| | | | | 25 | TAAS |ACM Transactions on Autonomous and Adaptive Systems | | | | 26 | JPDC |Journal Of Parallel and Distributed Computing | | | | 27 | TVLSI|IEEE Transactions on Very Large Scale Integration (VLSI) Systems | | | | 28 | TACO |ACM Transactions on Architecture and Code Optimization | | | | 29 | PARCO |Parallel Computing | | | | 30 | TCC |IEEE Transactions on Cloud Computing | | | | 31 | JETC |ACM Journal on Emerging Technologies in Computing Systems | | | | 32 | -|Cluster Computing | | | | 33 | A类会议| | | | | 34 | ISCA|International Symposium on Computer Architecture | | | | 35 | FAST |USENIX Conference on File and Storage Technologies |2019-09-26|2019-12-11|长文11页,短文6页|[https://www.usenix.org/conference/fast20](https://www.usenix.org/conference/fast20) 36 | ASPLOS |International Conference on Archltectural Support for Programming Languages and Operating Systems | | | | 37 | EuroSys |European Conference on Computer Systems |2019-11-4|2020-02-15|12页正文|[https://www.eurosys2020.org/](https://www.eurosys2020.org/) 38 | HPCA |International Symposium on High-Performance Computer Architecture | | | | 39 | SIGMETRICS |International Conference on Measurement and Modeling Of Computer Systems |2019-10-21|2019-12-16|12页正文|[https://www.sigmetrics.org/sigmetrics2020/](https://www.sigmetrics.org/sigmetrics2020/) 40 | FPGA |ACM/SIGDA International Symposium on Field-Programmable Gate Arrays | | | | 41 | USENIX ATC |USENIX Annul Technical Conference |2020-01-15|2020-04-05| 长文11页,短文5页 |[https://www.usenix.org/conference/atc20](https://www.usenix.org/conference/atc20) 42 | MICRO |IEEE/ACM International Symposium on Microarchitecture | | | | 43 | SC |International Conference for High Performance Computing, Networking, Storage, and Analysis | | | | 44 | PPoPP |ACM SIGPLAN Symposium on Principles & Practice Of Parallel Programming | | | | 45 | DAC |Design Automation Conference | | | | 46 | B类会议| | | || 47 | HPDC |International Symposium on High Performance Distributed Computing | | | | 48 | SoCC|ACM Symposium on Cloud Computing | | | |[https://www.ieee-socc.org/](https://www.ieee-socc.org/) 49 | RTAS |Real-Time and Embedded Technology and Applications Symposium | | | | 50 | MSST |Mass Storage Systems and Technologies | | | | 51 | CGO |ACM/IEEE International Symposium on Code Generation and Optimization | | | | 52 | PACT |International Conference on Parallel Architectures and Compilation Techniques | | | | 53 | CODES+ISSS |International Conference on Hardware/Software Co-design and System Synthesis | | | | 54 | PODC |ACM Symposium on Principles Of Distributed Computing | | | | 55 | VEE |International Conference on Virtual Execution Environments | | | | 56 | IPDPS |International Parallel & Distributed Processing Symposium | | | | 57 | ICS|International Conference on Supercomputing | | | | 58 | DATE |Design, Automation & Test in Europe Conference | | | | 59 | SPAA |ACM Symposium on Parallelism in Algorithms and Architectures | | | | 60 | Performance |International Symposium on Computer Performance, Modeling, Measurements and Evaluation | | | | 61 | ICDCS |International Conference on Distributed Computing Systems |2020-01-13|2020-03-14|10页全文|[http://icdcs2020.sg/](http://icdcs2020.sg/) 62 | ICCAD |International Conference on Computer-Aided Design | | | | 63 | CCGRID |IEEE/ACM International Symposium on Cluster, Cloud and Grid Computing | | | | 64 | HOT CHIPS |Hot Chips: A Symposium on High Performance Chips | | | | 65 | CLUSTER |IEEE International Conference on Cluster Computing | | | | 66 | ASP-DAC |Asia and South Pacific Design Automation Conference | | | | 67 | ISLPED |International Symposium on LOW Power Electronics and Design | | | | 68 | -|IEEE International Conference on Cloud Computing | | | | 69 | RTSS |Real-Time Systems Symposium | | | | 70 | ICCD |International Conference on Computer Design | | | | 71 | ISCAS |International Symposium on Circuits and Systems | | | | 72 | ISPD |International Symposium on Physical Design | | | | 73 | ICPP |International Conference on Parallel Processing |2020-03-09|2020-05-19|10页全文|[https://jnamaral.github.io/icpp20/](https://jnamaral.github.io/icpp20/) 74 | IEDM |IEEE International Electron Devices Meeting | | | | 75 | ISSCC |International Solid-State Circuits Conference | | | | 76 | 77 | ## 计算机网络 78 | 名称|全称|截稿时间|结果时间|篇幅|官网 79 | -|-|-|-|-|- 80 | A类期刊| | | || 81 | JSAC |IEEE Journal of Selected Areas in Communications | | | |[https://www.comsoc.org/publications/journals/ieee-jsac](https://www.comsoc.org/publications/journals/ieee-jsac) 82 | TMC |IEEE Transactions on Mobile Computing | | | |[https://www.computer.org/csdl/journals/tm](https://www.computer.org/csdl/journals/tm) 83 | TON |IEEE/ACM Transactions on Networking | | | |[https://ton.lids.mit.edu/](https://ton.lids.mit.edu/) 84 | TCOM |IEEE Transactions on Communications | | | |[https://mc.manuscriptcentral.com/tcom](https://mc.manuscriptcentral.com/tcom) 85 | B类期刊| | | || 86 | TWC |IEEE Transactions on Wireless Communications | | | | 87 | -|Wireless Networks | | | | 88 | TOSN |ACM Transactions on Sensor Networks | | | | 89 | -|Journal of Network and Computer Applications | | | | 90 | CN |Computer Networks | | | | 91 | -|Ad hoc Networks | | | | 92 | TNSM |IEEE Transactions on Network and Service Management | | | | 93 | CC|Computer Communications | | | | 94 | MONET |Mobile Networks & Applications | | | | 95 | TOMCCAP |ACM Transactions on Multimedia Computing, Communications and Applications | | | | 96 | TOIT |ACM Transactions on Internet Technology | | | | 97 | TVT|IEEE Transactions on Vehicular Technology | | | | 98 | -|IEEE Transactions on Aerospace and Electronic Systems | | | | 99 | -|IEEE Internet of Things Journal | | | | 100 | -|通信学报| | | | 101 | A类会议| | | | | 102 | SIGCOMM |ACM International Conference on the applications, technologies, architectures, and protocols for computer communication | | | | 103 | NSDI |Symposium on Network System Design and Implementation |2019-09-19|2019-12-13|12页正文|[https://www.usenix.org/conference/nsdi20](https://www.usenix.org/conference/nsdi20) 104 | MOBICOM |ACM International Conference on Mobile Computing and Networking |2019-08-18|2019-10-23|12页正文|[https://sigmobile.org/mobicom/2020/](https://sigmobile.org/mobicom/2020/) 105 | MobiSys |International Conference on Mobile Systems, Applications, and Services | | | |[https://sigmobile.org/mobisys/2020/](https://sigmobile.org/mobisys/2020/) 106 | IMC |Internet Measurement Conference | | | | 107 | IPSN |International Conference on Information Processing in Sensor Networks |2019-10-23|2020-01-10|全文12页|[https://ipsn.acm.org/2020/](https://ipsn.acm.org/2020/) 108 | SenSys |ACM Conference on Embedded Networked Sensor Systems | | | | 109 | INFOCOM |IEEE International Conference on Computer Communications |2019-07-31|2019-12-14|9页正文1页引文|[https://infocom2020.ieee-infocom.org/](https://infocom2020.ieee-infocom.org/) 110 | CoNEXT |ACM International Conference on Emerging Networking Experiments and Technologies | | | | 111 | ICNP |International Conference on Network Protocols | | | | 112 | B类会议| | | | | 113 | MobiHoc |International Symposium on Mobile Ad Hoc Networking and Computing |2019-12-06|2020-02-17|全文10页|[https://www.sigmobile.org/mobihoc/2020/](https://www.sigmobile.org/mobihoc/2020/) 114 | HotNets |The Workshop on Hot Topics in Networks | | | | 115 | Globecom |IEEE Global Communications Conference | | | | 116 | ICC |IEEE International Conference on Communications |2019-10-14|2020-01-27|6页正文1页附录|[https://icc2020.ieee-icc.org/](https://icc2020.ieee-icc.org/) 117 | NOSSDAV |International Workshop on Network and Operating System Support for Digital Audio and Video | | | | 118 | SECON |IEEE Communications Society Conference on Sensor and Ad Hoc Communications and Networks | | | | 119 | Networking |IFIP International Conferences on Networking |2020-01-07|2020-04-01|9页全文|[https://networking.ifip.org/2020/](https://networking.ifip.org/2020/) 120 | WoWMoM |IEEE International Symposium on a World of Wireless, Mobile and Multimedia Networks | | | | 121 | WCNC |IEEE Wireless Communications & Networking Conference |2019-10-04|2019-12-31|8页全文|[https://wcnc2020.ieee-wcnc.org/](https://wcnc2020.ieee-wcnc.org/) 122 | ANCS |Architectures for Networking and Communications Systems | | | | 123 | IWQoS |International Workshop on Quality of Service | | | | 124 | WiOpt |The International Symposium on Modeling and Optimization in Mobile, Ad Hoc, and Wireless Networks | | | |[http://wi-opt.org/](http://wi-opt.org/) 125 | ICN |ACM Conference on Information Centric Networking | | | |[http://www.icn2020.org/information-centric-networking/](http://www.icn2020.org/information-centric-networking/) 126 | CNSM |International Conference on Network and Service Management | | | | 127 | 128 | ## 网络与信息安全 129 | 名称|全称|截稿时间|结果时间|篇幅|官网 130 | -|-|-|-|-|- 131 | A类期刊| | | | | 132 | TIFS |IEEE Transactions on Information Forensics and Security | | | | 133 | -|Journal of Cryptology | | | | 134 | TDSC |IEEE Transactions on Dependable and Secure Computing | | | | 135 | B类期刊| | | | | 136 | -|Computers & Security | | | | 137 | JCS |Journal of Computer Security | | | | 138 | TOPS |ACM Transactions on Privacy and Security | | | | 139 | -|密码学报| | | | 140 | A类会议| | | | | 141 | S&P|IEEE Symposium on Security and Privacy | | | | 142 | NDSS |ISOC Network and Distributed System Security Symposium | | | | 143 | USENIX Security |Usenix Security Symposium |2019-11-15、2020-02-15|2020-02-01、2020-05-01|13页正文,录用后改18页|[https://www.usenix.org/conference/usenixsecurity20](https://www.usenix.org/conference/usenixsecurity20) 144 | CCS|ACM Conference on Computer and Communications Security | | | | 145 | EUROCRYPT |European Cryptology Conference | | | | 146 | CRYPTO |International Cryptology Conference | | | | 147 | CHES |International Conference on Cryptographic Hardware and Embedded Systems | | | | 148 | ASIACRYPT |International Conference on the Theory and Application of Cryptology and Information Security | | | | 149 | B类会议| | | | | 150 | SOUPS |Symposium On Usable Privacy and Security | | | | 151 | FC |Financial Cryptography and Data Security | | | | 152 | PETS |Privacy Enhancing Technologies Symposium | | | | 153 | TCC |Theory of Cryptography Conference | | | | 154 | PKC |International Workshop on Practice and Theory in Public Key Cryptography | | | | 155 | DIMVA |Detection of Intrusions and Malware & Vulnerability Assessment | | | | 156 | CSFW |IEEE Computer Security Foundations Workshop | | | | 157 | ESE |Fast Software Encryption | | | | 158 | ESORICS |European Symposium on Research in Computer Security | | | | 159 | DSN |The International Conference on Dependable Systems and Networks | | | | 160 | RAID |International Symposium on Recent Advances in Intrusion Detection | | | | 161 | IM |IFIP/IEEE International Symposium on Integrated Network Management | | | | 162 | CT-RSA |Cryptographer's Track at RSA Conference | | | | 163 | ACSAC |Annual Computer Security Applications Conference | | | | 164 | PAM |Passive and Active Network Measurement Conference | | | | 165 | SAC |Selected Areas in Cryptography | | | | 166 | AsiaCCS |Asia Conference on Computer and Communications Security | | | | 167 | WiSec |ACM Conference on Security and Privacy in Wireless and Mobile Networks | | | | 168 | ACNS |Applied Cryptography and Network Security | | | | 169 | IH&MMSec |ACM Workshop on Information Hiding and Multimedia Security | | | | 170 | SEC |IFIP International Information Security Conference | | | | 171 | NOMS |IEEE/IFIP Network Operations and Management Symposium | | | | 172 | 173 | ## 理论计算机科学 174 | 名称|全称|截稿时间|结果时间|篇幅|官网 175 | -|-|-|-|-|- 176 | A类期刊| | | | | 177 | SICOMP |SIAM Journal on Computing | | | | 178 | TIT|IEEE Transactions on Information Theory | | | | 179 | TALG |ACM Transactions on Algorithms | | | | 180 | IANDC |Information and Computation | | | | 181 | B类期刊| | | | | 182 | TOMS |ACM Transactions on Mathematical Software | | | | 183 | JCSS|Journal Of Computer and System Sciences | | | | 184 | FGCS |Future Generatlon Computer Systems | | | | 185 | Algorithmica |Algorithmica | | | | 186 | CC|Computational complexlty | | | | 187 | INFORMS |INFORMS Journal on Computing | | | | 188 | TOCL |ACM Transactions on Computational Logic | | | | 189 | JGC |Journal Of Grid Computlng | | | | 190 | FMSD |Formal Methods in System Design | | | | 191 | JGO |Journal Of Global Optimization | | | | 192 | JSC|Journal Of Symbolic Computation | | | | 193 | FAC |Formal Aspects Of Computing | | | | 194 | TCS |Theoretical Computer Science | | | | 195 | A类会议| | | | | 196 | STOC |ACM Symposium on the Theory of Computing | | | | 197 | FOCS |IEEE Annual Symposium on Foundations of Computer Science | | | | 198 | SODA |ACM-SIAM Symposium on Discrete Algorithms | | | | 199 | CAV |Computer Aided Verification | | | | 200 | UCS |IEEE Symposium on Logic in Computer Science | | | | 201 | CCC|IEEE Conference on Computational Complexity | | | | 202 | ICALP |International Colloquium on Automata, Languages and Programming | | | | 203 | B类会议| | | | | 204 | SAT |Theory and Applications of Satisfiability Testing | | | | 205 | CADE/IJCAR |International Conference on Automated Deduction/lnternational Joint Conference on Automated Reasoning | | | | 206 | SoCG |ACM Symposium on Computational Geometry | | | | 207 | CONCUR |International Conference on Concurrency Theory | | | | 208 | STACS |Symposium on Theoretical Aspects of Computer Science | | | | 209 | ESA |European Symposium on Algorithms | | | | 210 | CSL |Computer Science Logic | | | | 211 | FMCAD |Formal Methods in Computer-Aided Design | | | | 212 | ITCS/ICS |Innovations in Theoretical Computer Science | | | | 213 | SWAT/WADS |Scandinavian Symposium and Workshops on Algorithm Theory/ the Algorithms and Data Structures Symposium | | | | 214 | ISIT |IEEE International Symposium on Information Theory | | | | 215 | ## 系统软件与软件工程 216 | 名称|全称|截稿时间|结果时间|篇幅|官网 217 | -|-|-|-|-|- 218 | A类期刊| | | | | 219 | TSE|IEEE Transactions on Software Engineering | | | | 220 | TOSEM |ACM Transactions on Software Engineering and Methodology | | | | 221 | TOPLAS |ACM Transactions on Programming Languages & Systems | | | | 222 | B类期刊| | | | | 223 | TSC|IEEE Transactlons on Servlce Computlng | | | | 224 | IST |Information and Software Technology | | | | 225 | ESE |Empirical Software Engineering | | | | 226 | SOSyM |Software and System Modeling | | | | 227 | RE |Requlrements Englneerlng | | | | 228 | JSS |Journal of Systems and Software | | | | 229 | ASE|Automated Software Engineering | | | | 230 | SCP |Science Of Computer Programming | | | | 231 | STTT|International Journal on Software Tools for Technology Transfer | | | | 232 | STVR |Software Testing, Verification and Reliability | | | | 233 | SPE |Software: Practice and Experience | | | | 234 | -|软 件 学 报 | | | | 235 | A类会议| | | | | 236 | OSDI |USENIX Symposium on Operating Systems Design and implementations | | | |[https://www.usenix.org/conference/osdi20](https://www.usenix.org/conference/osdi20) 237 | ICSE|International Conference on Software Engineering | | | | 238 | SOSP |ACM Symposium on Operating Systems Principles | | | | 239 | POPL |ACM SIGPLAN-SIGACT Symposium on Principles Of Programming Languages | | | | 240 | PLDI |ACM SIGPLAN Conference on Programming Language Design & Implementation | | | | 241 | FSE/ESEC |ACM SIGSOFT Symposium on the Foundation Of Software Engineering/ European Software Engineering Conference | | | | 242 | ISSTA |International Symposium on Software Testing and Analysls | | | | 243 | OOPSLA |Conference on Object-Oriented Programming Systems, Languages, and Applications | | | | 244 | ASE|International Conference on Automated Software Engineering | | | | 245 | B类会议| | | | | 246 | MSR |Mining Software Repositories | | | | 247 | SANER |International Conference on Software Analysis, Evolution, and Reengineering| | | | 248 | Middleware |International Middleware Conference | | | |[http://middleware-conference.org/](http://middleware-conference.org/) 249 | EASE |Evaluation and Assessment in Software Engineering | | | | 250 | ICPC |IEEE International Conference on Program Comprehension | | | | 251 | ICSME|International Conference on Software Maintenance and Evolution | | | | 252 | ISPASS |IEEE International Symposium on Performance Analysis Of Systems and Software | | | | 253 | ECOOP |European Conference on Object Oriented Programming | | | | 254 | ICST|IEEE International Conference 0 n Software Testing, Verification and Validation | | | | 255 | ICFP|International Conference on Function Programming | | | | 256 | RE |IEEE International Requirement Engineering Conference | | | | 257 | CAiSE |International Conference on Advanced Informatlon Systems Engineering | | | | 258 | HotOS |USENIX Workshop on Hot Topics in Operating Systems | | | | 259 | ETAPS |European Joint Conferences on Theory and Practice Of Software | | | | 260 | VMCAI |International Conference on Verification, Model Checking, and Abstract Interpretatlon | | | | 261 | ISSRE |International Symposium on Software Reliabillty Engineering | | | | 262 | MoDELS |International Conference on Model Driven Engineering Languages and Systems | | | | 263 | ESEM |International Symposium on Empirical Software Engineering and Measurement | | | | 264 | FM|International Symposium on Formal Methods | | | | 265 | EMSOFT |International Conference on Embedded Software | | | | 266 | SCC |International Conference on Service Computing | | | | 267 | ICWS|International Conference on Web Services (Research Track) | | | | 268 | CP |International Conference on Principles and Practice of Constraint Programming | | | | 269 | ATVA |International Symposium on Automated Technology for Verification and Analysis | | | | 270 | ## 数据库与数据挖掘 271 | 名称|全称|截稿时间|结果时间|篇幅|官网 272 | -|-|-|-|-|- 273 | A类期刊| | | | | 274 | TKDE |IEEE Transactions on Knowledge and Data Engineering | | | | 275 | VLDBJ |The VLDB Journal | | | | 276 | TODS |ACM Transactions on Database Systems | | | | 277 | TOIS |ACM Transactions on Information Systems | | | | 278 | B类期刊| | | | | 279 | I&M|Information and Management | | | | 280 | EJIS |European Journal of Information Systems | | | | 281 | IJGIS |International Journal of Geographical Information Science | | | | 282 | J. Strategic Inf. Sys. |Journal of Strategic Information Systems | | | | 283 | JASIST |Journal of the American Society for Information Science and Technology | | | | 284 | IPM |Information Processing and Management | | | | 285 | IS |Information Systems | | | | 286 | JWS |Journal of Web Semantics | | | | 287 | DMKD |Data Mining and Knowledge Discovery | | | | 288 | KAIS |Knowledge and Information Systems | | | | 289 | TKDD |ACM Transactions on Knowledge Discovery from Data | | | | 290 | AEI|Advanced Engineering Informatics | | | | 291 | IJIS |International Journal of Intelligent Systems | | | | 292 | TWEB |ACM Transactions on the Web | | | | 293 | -|Information Sciences | | | | 294 | -|Geolnformatica | | | | 295 | DKE |Data and Knowledge Engineering | | | | 296 | A类会议| | | | | 297 | SIGMOD |ACM Conference on Management Of Data |2019-10-22|2019-12-10|正文14页|[https://sigmod2020.org/](https://sigmod2020.org/) 298 | SIGKDD |ACM Knowledge Discovery and Data Mining | | | | 299 | SIGIR |International Conference on Research on Development in Information Retrieval |2020-01-15|2020-04-20|短文4,长文10页|[https://sigir.org/sigir2020/](https://sigir.org/sigir2020/) 300 | WSDM |ACM International Conference on Web Search and Data Mining | | | | 301 | VLDB |International Conference on Very Large Data Bases | | | | 302 | ICDE |IEEE International Conference on Data Engineering | | | | 303 | PODS |ACM Symposium on Principles Of Database Systems | | | | 304 | B类会议| | | | | 305 | ISWC |IEEE International Semantic Web Conference | | | | 306 | CIKM |ACM International Conference on Information and Knowledge Management | | | | 307 | SDM |SIAM International Conference on Data Mining | | | | 308 | ICDT |International Conference on Database Theory | | | | 309 | ICDM |International Conference on Data Mining | | | | 310 | ECIR |European Conference on IR Research | | | | 311 | EDBT |International Conference on Extending Database Technology | | | | 312 | CIDR |International Conference on Innovative Data Systems Research | | | | 313 | DASFAA |Database Systems for Advanced Applications | | | | 314 | ## 人工智能与模式识别 315 | 名称|全称|截稿时间|结果时间|篇幅|官网 316 | -|-|-|-|-|- 317 | A类期刊| | | | | 318 | TPAMI |IEEE Trans on Pattern Analysis and Machine Intelligence | | | | 319 | IJCV |International Journal of Computer Vision | | | | 320 | JMLR |Journal of Machine Learning Research | | | | 321 | TR|IEEE Transactions on Robotics | | | | 322 | Al |Artificial Intelligence | | | | 323 | TASLP |IEEE Transactions on Audio Speech, and Language Processing | | | | 324 | B类期刊| | | | | 325 | TEC |IEEE Transactions on Evolutionary Computation | | | | 326 | TNNLS |IEEE Transactions on Neural Networks and learning systems | | | | 327 | -|IEEE Transactions on Cybernetics | | | | 328 | TFS |IEEE Transactlons on Fuzzy Systems | | | | 329 | PR |Pattern Recognltlon | | | | 330 | TAC |IEEE Transactions on Affective Comput'ng | | | | 331 | JBI|Journal Of Biomedical Informatics | | | | 332 | -|Neural Networks | | | | 333 | -|KNOWLEDGE-BASED SYSTEMS | | | | 334 | Expert Syst. Appl. |Expert Systems with Applications | | | | 335 | PRL |Pattern Recognltlon Letters | | | | 336 | JAIR|Journal Of Artificial Intelligence Research | | | | 337 | CVIU|Computer Vision and Image Understanding | | | | 338 | EAAI|Engineering Applications Of Artificial Intelligence | | | | 339 | -|International Journal Of Neural Systems | | | | 340 | -|Neurocomputlng | | | | 341 | -|Evolutionary Computation | | | | 342 | -|Computational Linguistics | | | | 343 | -|Machine Learning | | | | 344 | AIM|Artificial Intelligence in Medicine | | | | 345 | -|Image and Vision Computlng | | | | 346 | -|Computer Speech and Language | | | | 347 | -|Journal Of Automated Reasoning | | | | 348 | IJAR|International Journal Of Approximate Reasoning | | | | 349 | AAMAS |Autonomous Agents and Multi-Agent Systems | | | | 350 | IJIS|International Journal Of Intelligent Systems | | | | 351 | TG|IEEE Transactlons on Games | | | | 352 | JSLHR |Journal Of Speech, Language, and Hearing Research | | | | 353 | -|Neural Computation | | | | 354 | -|Applied Intelligence | | | | 355 | TACL |Transactions of the Association for Computational Linguistics | | | | 356 | -|智 能 系 统 学 报 | | | | 357 | -|中 文 信 息 学 报 | | | | 358 | A类会议| | | | | 359 | CVPR |IEEE Conference on Computer Vision and Pattern Recognition | | | | 360 | ICCV |International Conference on Computer Vision | | | | 361 | ICML |International Conference on Machine Learning | | | | 362 | ACL |Annual Meeting of the Association for Computational Linguistics | | | | 363 | ECCV |European Conference on Computer Vision | | | | 364 | COLT |Annual Conference on Computational Learning Theory | | | | 365 | NeuriPS |Annual Conference on Neural Information Processing Systems | | | | 366 | AAA I |AAAI Conference on Artificial Intelligence | | | | 367 | EMNLP |Conference on Empirical Methods in Natural Language Processing | | | | 368 | ICRA |IEEE International Conference on Robotics and Automation | | | | 369 | ICLR |International Conference on Learning Representations | | | | 370 | RSS |Robotics: Science and Systems • A Robotics Conference | | | | 371 | B类会议| | | | | 372 | BMVC |British Machine Vision Conference | | | | 373 | AISTATS |Artificial Intelligence and Statistics | | | | 374 | NAACL |The Annual Conference of the North American Chapter of the Association for Computational Linguistics | | | | 375 | IJCAI |International Joint Conference on Artificial Intelligence | | | | 376 | AAMAS |International Joint Conference on Autonomous Agents and Multi-agent Systems | | | | 377 | ICAPS |International Conference on Automated Planning and Scheduling | | | | 378 | ICB |International Joint Conference on Biometrics | | | | 379 | GECCO |Genetic and Evolutionary Computation Conference | | | | 380 | ICPR |International Conference on Pattern Recognition | | | | 381 | FG|International Conference on Automatic Face and Gesture Recognition | | | | 382 | ICDAR |International Conference on Document Analysis and Recognition | | | | 383 | IROS |IEEE\RSJ International Conference on Intelligent Robots and Systems | | | | 384 | COLING |International Conference on Computational Linguistics | | | | 385 | IJCNN |International Joint Conference on Neural Networks | | | | 386 | UAI |International Conference on Uncertainty in Artificial Intelligence | | | | 387 | ALT |International Conference on Algorithmic Learning Theory | | | | 388 | RecSys |Conference on Recommender Systems | | | | 389 | ## 计算机图形学与多媒体 390 | 名称|全称|截稿时间|结果时间|篇幅|官网 391 | -|-|-|-|-|- 392 | A类期刊| | | | | 393 | TIP |IEEE Transactions on Image Processing | | | | 394 | TOG |ACM Transactions on Graphics | | | | 395 | TMM |IEEE Transactions on Multimedia | | | | 396 | TVCG |IEEE Transactions on Visualization and Computer Graphics | | | | 397 | CAD |Computer-Aided Design | | | | 398 | B类期刊| | | | | 399 | -|Signal Processing | | | | 400 | TCSVT |IEEE Transactions on Circuits and Systems for Video Technology | | | | 401 | SilMS |SIAM Journal on Imaging Sciences | | | | 402 | CG |Computers & Graphics | | | | 403 | SPL |IEEE Signal Processing Letters | | | | 404 | CGF |Computer Graphics Forum | | | | 405 | Speech Com |Speech Communication | | | | 406 | CAGD |Computer Aided Geometric Design | | | | 407 | -|计算机辅助设计与图形学学报| | | | 408 | -|中国图像图形学报| | | | 409 | -|图学学报| | | | 410 | A类会议| | | | | 411 | SIGGRAPH |ACM SIGGRAPH Annual Conference | | | | 412 | IEEE VIS |IEEE Visualization Conference | | | | 413 | ACM MM |ACM International Conference on Multimedia | | | | 414 | VR |IEEE Virtual Reality | | | | 415 | B类会议| | | | | 416 | SPM |Symposium on Solid and Physical Modeling | | | | 417 | EGSR |Eurographics Symposium on Rendering | | | | 418 | ISMAR |International Symposium on Mixed and Augmented Reality | | | | 419 | EG|Eurographics | | | | 420 | SGP |Eurographics Symposium on Geometry Processing | | | | 421 | SCA |ACM/Eurographics Symposium on Computer Animation | | | | 422 | EuroVis |Eurographics Conference on Visualization | | | | 423 | ICASSP |IEEE International Conference on Acoustics, Speech and SP | | | | 424 | ICMR |ACM SIGMM International Conference on Multimedia Retrieval | | | | 425 | ICIP |International Conference on Image Processing | | | | 426 | SI3D |ACM Symposium on Interactive 3D Graphics | | | | 427 | PacificVis |IEEE Pacific Visualization Symposium | | | | 428 | PG|Pacific Graphics: The Pacific Conference on Computer Graphics and Applications | | | | 429 | DCC |Data Compression Conference |2019-11-01||10页全文|[https://www.cs.brandeis.edu/~dcc/](https://www.cs.brandeis.edu/~dcc/) 430 | ## 人机交互与普适计算 431 | 名称|全称|截稿时间|结果时间|篇幅|官网 432 | -|-|-|-|-|- 433 | A类期刊| | | | | 434 | IJHCS|International Journal of Human Computer Studies| | | | 435 | TOCHI|ACM Transactions on Computer-Human Interaction| | | | 436 | B类期刊| | | | | 437 | UMUAI |User Modeling and User-Adapted Interaction | | | | 438 | -|IEEE Transactions on Human-Machine Systems | | | | 439 | HCI |Human Computer Interaction | | | | 440 | PMC |Pervasive and Mobile Computing | | | | 441 | IJHCI |International Journal of Human-Computer Interaction | | | | 442 | BIT |Behaviour & Information Technology | | | | 443 | CSCW|Computer Supported Cooperative Work | | | | 444 | IWC |Interacting with Computers | | | | 445 | A类会议| | | | | 446 | CSCW|ACM Conference on Computer Supported Cooperative Work and Social Computing | | | | 447 | UbiComp |ACM International Conference on Ubiquitous Computing |2019-11-15|within 8 weeks|13-16页正文|[http://ubicomp.org/ubicomp2020/](http://ubicomp.org/ubicomp2020/) 448 | UIST |ACM Symposium on User Interface Software and Technology | | | | 449 | CHI |ACM Conference on Human Factors in Computing Systems | | | | 450 | B类会议| | | | | 451 | PERCOM |IEEE International Conference on Pervasive Computing and Communications | | | | 452 | IUI|ACM International Conference on Intelligent User Interfaces | | | | 453 | MobileHCl |International Conference on Human Computer Interaction with Mobile Devices and Services | | | | 454 | DIS |ACM Conference on Designing Interactive Systems | | | | 455 | ICMI |ACM International Conference on Multimodal Interaction | | | | 456 | ## 综合与交叉 457 | 名称|全称|截稿时间|结果时间|篇幅|官网 458 | -|-|-|-|-|- 459 | A类期刊| | | | | 460 | JACM |Journal of the ACM | | | | 461 | Proc. IEEE |Proceedings of the IEEE | | | | 462 | -|Science China | | | | 463 | -|中国科学| | | | 464 | B类期刊| | | | | 465 | TMI|IEEE Transactions on Medical Imaging | | | | 466 | -|Briefings in Bioinformatics | | | | 467 | TITS|IEEE Transactions on Intelligent Transportation Systems | | | | 468 | TGARS |IEEE Transactions on Geoscience and Remote Sensing | | | | 469 | TASAE |IEEE Transactions on Automation Science and Engineering | | | | 470 | -|Bioinformatics | | | | 471 | JAMIA |Journal of the American Medical Informatics Association | | | | 472 | JBHI |IEEE Journal of Biomedical and Health Informatics | | | | 473 | TBD |IEEE Transactions on Big Data | | | | 474 | -|BMC Bioinformatics | | | | 475 | GRSL |IEEE Geoscience and Remote Sensing Letters | | | | 476 | TCBB |IEEE-ACM Transactions on Computational Biology and Bioinformatics | | | | 477 | JCST |Journal of Computer Science and Technology | | | | 478 | -|Tsinghua Science and Technology | | | | 479 | -|计算机学报| | | | 480 | -|计算机研究与发展| | | | 481 | -|电子学报| | | | 482 | -|自动化学报| | | | 483 | -|系统仿真学报| | | | 484 | -|清华大学学报(自然科学版)| | | | 485 | A类会议| | | | | 486 | RECOMB |International Conference on Research in Computational Molecular Biology | | | | 487 | ISMB |International conference on Intelligent Systems for Molecular Biology | | | | 488 | WWW|International World Wide Web Conferences |2019-10-14|2020-1-10| 长文12页,短文6页 |[https://www2020.thewebconf.org/](https://www2020.thewebconf.org/) 489 | EC |ACM Conference on Economics and Computation | | | | 490 | B类会议| | | | | 491 | HSCC |International Conference on Hybrid Systems: Computation and Control | | | | 492 | MICCAI |International Conference on Medical Image Computing and Computer Assisted Intervention | | | | 493 | BPM |International Conference on Business Process Management | | | | 494 | 495 | 496 | 部分会议按时间排序:https://docs.qq.com/sheet/DWkFid3JsSldtV2p6?c=C12A0A0 497 | 498 | -------------------------------------------------------------------------------- /install.sql: -------------------------------------------------------------------------------- 1 | DROP DATABASE thcpl; 2 | CREATE DATABASE thcpl; 3 | USE thcpl; 4 | 5 | 6 | 7 | CREATE TABLE category( 8 | id INT, 9 | name VARCHAR(30) 10 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin; 11 | 12 | CREATE TABLE message( 13 | cat INT, 14 | isTrans INT, 15 | isA INT, 16 | name VARCHAR(30), 17 | fullname VARCHAR(100), 18 | deadline VARCHAR(50), 19 | restime VARCHAR(50), 20 | page VARCHAR(50), 21 | site VARCHAR(100) 22 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin; 23 | 24 | INSERT INTO category VALUES(1,'高性能计算'); 25 | INSERT INTO category VALUES(2,'计算机网络'); 26 | INSERT INTO category VALUES(3,'网络与信息安全'); 27 | INSERT INTO category VALUES(4,'理论计算机科学'); 28 | INSERT INTO category VALUES(5,'系统软件与软件工程'); 29 | INSERT INTO category VALUES(6,'数据库与数据挖掘'); 30 | INSERT INTO category VALUES(7,'人工智能与模式识别'); 31 | INSERT INTO category VALUES(8,'计算机图形学与多媒体'); 32 | INSERT INTO category VALUES(9,'人机交互与普适计算'); 33 | INSERT INTO category VALUES(10,'综合与交叉'); 34 | 35 | 36 | 37 | INSERT INTO message VALUES(1,1,1,'TOCS','ACM Transactlons on Computer Systems','-','-','-','-'); 38 | INSERT INTO message VALUES(1,1,1,'TPDS','IEEE Transactions on Parallel and Distributed Systems','-','-','-','-'); 39 | INSERT INTO message VALUES(1,1,1,'TC','IEEE Transactlons on Computers','-','-','-','-'); 40 | INSERT INTO message VALUES(1,1,1,'TCAD','IEEE Transactions On Computer-Aided Design Of Integrated Circults And Systems','-','-','-','-'); 41 | INSERT INTO message VALUES(1,1,1,'TOS','ACM Transactlons on Storage','-','-','-','-'); 42 | INSERT INTO message VALUES(1,1,0,'TAAS','ACM Transactions on Autonomous and Adaptive Systems','-','-','-','-'); 43 | INSERT INTO message VALUES(1,1,0,'JPDC','Journal Of Parallel and Distributed Computing','-','-','-','-'); 44 | INSERT INTO message VALUES(1,1,0,'TVLSI','IEEE Transactions on Very Large Scale Integration (VLSI) Systems','-','-','-','-'); 45 | INSERT INTO message VALUES(1,1,0,'TACO','ACM Transactions on Architecture and Code Optimization','-','-','-','-'); 46 | INSERT INTO message VALUES(1,1,0,'PARCO','Parallel Computing','-','-','-','-'); 47 | INSERT INTO message VALUES(1,1,0,'TCC','IEEE Transactions on Cloud Computing','-','-','-','-'); 48 | INSERT INTO message VALUES(1,1,0,'JETC','ACM Journal on Emerging Technologies in Computing Systems','-','-','-','-'); 49 | INSERT INTO message VALUES(1,1,0,'-','Cluster Computing','-','-','-','-'); 50 | INSERT INTO message VALUES(1,0,1,'ISCA','International Symposium on Computer Architecture','-','-','-','-'); 51 | INSERT INTO message VALUES(1,0,1,'FAST','USENIX Conference on File and Storage Technologies','2019-09-26','2019-12-11','长文11页,短文6页','[https://www.usenix.org/conference/fast20](https://www.usenix.org/conference/fast20)'); 52 | INSERT INTO message VALUES(1,0,1,'ASPLOS','International Conference on Archltectural Support for Programming Languages and Operating Systems','-','-','-','-'); 53 | INSERT INTO message VALUES(1,0,1,'EuroSys','European Conference on Computer Systems','2019-11-4','2020-02-15','12页正文','[https://www.eurosys2020.org/](https://www.eurosys2020.org/)'); 54 | INSERT INTO message VALUES(1,0,1,'HPCA','International Symposium on High-Performance Computer Architecture','-','-','-','-'); 55 | INSERT INTO message VALUES(1,0,1,'SIGMETRICS','International Conference on Measurement and Modeling Of Computer Systems','2019-10-21','2019-12-16','12页正文','[https://www.sigmetrics.org/sigmetrics2020/](https://www.sigmetrics.org/sigmetrics2020/)'); 56 | INSERT INTO message VALUES(1,0,1,'FPGA','ACM/SIGDA International Symposium on Field-Programmable Gate Arrays','-','-','-','-'); 57 | INSERT INTO message VALUES(1,0,1,'USENIX ATC','USENIX Annul Technical Conference','2020-01-15','2020-04-05','长文11页,短文5页','[https://www.usenix.org/conference/atc20](https://www.usenix.org/conference/atc20)'); 58 | INSERT INTO message VALUES(1,0,1,'MICRO','IEEE/ACM International Symposium on Microarchitecture','-','-','-','-'); 59 | INSERT INTO message VALUES(1,0,1,'SC','International Conference for High Performance Computing, Networking, Storage, and Analysis','-','-','-','-'); 60 | INSERT INTO message VALUES(1,0,1,'PPoPP','ACM SIGPLAN Symposium on Principles & Practice Of Parallel Programming','-','-','-','-'); 61 | INSERT INTO message VALUES(1,0,1,'DAC','Design Automation Conference','-','-','-','-'); 62 | INSERT INTO message VALUES(1,0,0,'HPDC','International Symposium on High Performance Distributed Computing','-','-','-','-'); 63 | INSERT INTO message VALUES(1,0,0,'SoCC','ACM Symposium on Cloud Computing','-','-','-','[https://www.ieee-socc.org/](https://www.ieee-socc.org/)'); 64 | INSERT INTO message VALUES(1,0,0,'RTAS','Real-Time and Embedded Technology and Applications Symposium','-','-','-','-'); 65 | INSERT INTO message VALUES(1,0,0,'MSST','Mass Storage Systems and Technologies','-','-','-','-'); 66 | INSERT INTO message VALUES(1,0,0,'CGO','ACM/IEEE International Symposium on Code Generation and Optimization','-','-','-','-'); 67 | INSERT INTO message VALUES(1,0,0,'PACT','International Conference on Parallel Architectures and Compilation Techniques','-','-','-','-'); 68 | INSERT INTO message VALUES(1,0,0,'CODES+ISSS','International Conference on Hardware/Software Co-design and System Synthesis','-','-','-','-'); 69 | INSERT INTO message VALUES(1,0,0,'PODC','ACM Symposium on Principles Of Distributed Computing','-','-','-','-'); 70 | INSERT INTO message VALUES(1,0,0,'VEE','International Conference on Virtual Execution Environments','-','-','-','-'); 71 | INSERT INTO message VALUES(1,0,0,'IPDPS','International Parallel & Distributed Processing Symposium','-','-','-','-'); 72 | INSERT INTO message VALUES(1,0,0,'ICS','International Conference on Supercomputing','-','-','-','-'); 73 | INSERT INTO message VALUES(1,0,0,'DATE','Design, Automation & Test in Europe Conference','-','-','-','-'); 74 | INSERT INTO message VALUES(1,0,0,'SPAA','ACM Symposium on Parallelism in Algorithms and Architectures','-','-','-','-'); 75 | INSERT INTO message VALUES(1,0,0,'Performance','International Symposium on Computer Performance, Modeling, Measurements and Evaluation','-','-','-','-'); 76 | INSERT INTO message VALUES(1,0,0,'ICDCS','International Conference on Distributed Computing Systems','2020-01-13','2020-03-14','10页全文','[http://icdcs2020.sg/](http://icdcs2020.sg/)'); 77 | INSERT INTO message VALUES(1,0,0,'ICCAD','International Conference on Computer-Aided Design','-','-','-','-'); 78 | INSERT INTO message VALUES(1,0,0,'CCGRID','IEEE/ACM International Symposium on Cluster, Cloud and Grid Computing','-','-','-','-'); 79 | INSERT INTO message VALUES(1,0,0,'HOT CHIPS','Hot Chips: A Symposium on High Performance Chips','-','-','-','-'); 80 | INSERT INTO message VALUES(1,0,0,'CLUSTER','IEEE International Conference on Cluster Computing','-','-','-','-'); 81 | INSERT INTO message VALUES(1,0,0,'ASP-DAC','Asia and South Pacific Design Automation Conference','-','-','-','-'); 82 | INSERT INTO message VALUES(1,0,0,'ISLPED','International Symposium on LOW Power Electronics and Design','-','-','-','-'); 83 | INSERT INTO message VALUES(1,0,0,'-','IEEE International Conference on Cloud Computing','-','-','-','-'); 84 | INSERT INTO message VALUES(1,0,0,'RTSS','Real-Time Systems Symposium','-','-','-','-'); 85 | INSERT INTO message VALUES(1,0,0,'ICCD','International Conference on Computer Design','-','-','-','-'); 86 | INSERT INTO message VALUES(1,0,0,'ISCAS','International Symposium on Circuits and Systems','-','-','-','-'); 87 | INSERT INTO message VALUES(1,0,0,'ISPD','International Symposium on Physical Design','-','-','-','-'); 88 | INSERT INTO message VALUES(1,0,0,'ICPP','International Conference on Parallel Processing','2020-03-09','2020-05-19','10页全文','[https://jnamaral.github.io/icpp20/](https://jnamaral.github.io/icpp20/)'); 89 | INSERT INTO message VALUES(1,0,0,'IEDM','IEEE International Electron Devices Meeting','-','-','-','-'); 90 | INSERT INTO message VALUES(1,0,0,'ISSCC','International Solid-State Circuits Conference','-','-','-','-'); 91 | INSERT INTO message VALUES(2,1,1,'JSAC','IEEE Journal of Selected Areas in Communications','-','-','-','[https://www.comsoc.org/publications/journals/ieee-jsac](https://www.comsoc.org/publications/journals/ieee-jsac)'); 92 | INSERT INTO message VALUES(2,1,1,'TMC','IEEE Transactions on Mobile Computing','-','-','-','[https://www.computer.org/csdl/journals/tm](https://www.computer.org/csdl/journals/tm)'); 93 | INSERT INTO message VALUES(2,1,1,'TON','IEEE/ACM Transactions on Networking','-','-','-','[https://ton.lids.mit.edu/](https://ton.lids.mit.edu/)'); 94 | INSERT INTO message VALUES(2,1,1,'TCOM','IEEE Transactions on Communications','-','-','-','[https://mc.manuscriptcentral.com/tcom](https://mc.manuscriptcentral.com/tcom)'); 95 | INSERT INTO message VALUES(2,1,0,'TWC','IEEE Transactions on Wireless Communications','-','-','-','-'); 96 | INSERT INTO message VALUES(2,1,0,'-','Wireless Networks','-','-','-','-'); 97 | INSERT INTO message VALUES(2,1,0,'TOSN','ACM Transactions on Sensor Networks','-','-','-','-'); 98 | INSERT INTO message VALUES(2,1,0,'-','Journal of Network and Computer Applications','-','-','-','-'); 99 | INSERT INTO message VALUES(2,1,0,'CN','Computer Networks','-','-','-','-'); 100 | INSERT INTO message VALUES(2,1,0,'-','Ad hoc Networks','-','-','-','-'); 101 | INSERT INTO message VALUES(2,1,0,'TNSM','IEEE Transactions on Network and Service Management','-','-','-','-'); 102 | INSERT INTO message VALUES(2,1,0,'CC','Computer Communications','-','-','-','-'); 103 | INSERT INTO message VALUES(2,1,0,'MONET','Mobile Networks & Applications','-','-','-','-'); 104 | INSERT INTO message VALUES(2,1,0,'TOMCCAP','ACM Transactions on Multimedia Computing, Communications and Applications','-','-','-','-'); 105 | INSERT INTO message VALUES(2,1,0,'TOIT','ACM Transactions on Internet Technology','-','-','-','-'); 106 | INSERT INTO message VALUES(2,1,0,'TVT','IEEE Transactions on Vehicular Technology','-','-','-','-'); 107 | INSERT INTO message VALUES(2,1,0,'-','IEEE Transactions on Aerospace and Electronic Systems','-','-','-','-'); 108 | INSERT INTO message VALUES(2,1,0,'-','IEEE Internet of Things Journal','-','-','-','-'); 109 | INSERT INTO message VALUES(2,1,0,'-','通信学报','-','-','-','-'); 110 | INSERT INTO message VALUES(2,0,1,'SIGCOMM','ACM International Conference on the applications, technologies, architectures, and protocols for computer communication','-','-','-','-'); 111 | INSERT INTO message VALUES(2,0,1,'NSDI','Symposium on Network System Design and Implementation','2019-09-19','2019-12-13','12页正文','[https://www.usenix.org/conference/nsdi20](https://www.usenix.org/conference/nsdi20)'); 112 | INSERT INTO message VALUES(2,0,1,'MOBICOM','ACM International Conference on Mobile Computing and Networking','2019-08-18','2019-10-23','12页正文','[https://sigmobile.org/mobicom/2020/](https://sigmobile.org/mobicom/2020/)'); 113 | INSERT INTO message VALUES(2,0,1,'MobiSys','International Conference on Mobile Systems, Applications, and Services','-','-','-','[https://sigmobile.org/mobisys/2020/](https://sigmobile.org/mobisys/2020/)'); 114 | INSERT INTO message VALUES(2,0,1,'IMC','Internet Measurement Conference','-','-','-','-'); 115 | INSERT INTO message VALUES(2,0,1,'IPSN','International Conference on Information Processing in Sensor Networks','2019-10-23','2020-01-10','全文12页','[https://ipsn.acm.org/2020/](https://ipsn.acm.org/2020/)'); 116 | INSERT INTO message VALUES(2,0,1,'SenSys','ACM Conference on Embedded Networked Sensor Systems','-','-','-','-'); 117 | INSERT INTO message VALUES(2,0,1,'INFOCOM','IEEE International Conference on Computer Communications','2019-07-31','2019-12-14','9页正文1页引文','[https://infocom2020.ieee-infocom.org/](https://infocom2020.ieee-infocom.org/)'); 118 | INSERT INTO message VALUES(2,0,1,'CoNEXT','ACM International Conference on Emerging Networking Experiments and Technologies','-','-','-','-'); 119 | INSERT INTO message VALUES(2,0,1,'ICNP','International Conference on Network Protocols','-','-','-','-'); 120 | INSERT INTO message VALUES(2,0,0,'MobiHoc','International Symposium on Mobile Ad Hoc Networking and Computing','2019-12-06','2020-02-17','全文10页','[https://www.sigmobile.org/mobihoc/2020/](https://www.sigmobile.org/mobihoc/2020/)'); 121 | INSERT INTO message VALUES(2,0,0,'HotNets','The Workshop on Hot Topics in Networks','-','-','-','-'); 122 | INSERT INTO message VALUES(2,0,0,'Globecom','IEEE Global Communications Conference','-','-','-','-'); 123 | INSERT INTO message VALUES(2,0,0,'ICC','IEEE International Conference on Communications','2019-10-14','2020-01-27','6页正文1页附录','[https://icc2020.ieee-icc.org/](https://icc2020.ieee-icc.org/)'); 124 | INSERT INTO message VALUES(2,0,0,'NOSSDAV','International Workshop on Network and Operating System Support for Digital Audio and Video','-','-','-','-'); 125 | INSERT INTO message VALUES(2,0,0,'SECON','IEEE Communications Society Conference on Sensor and Ad Hoc Communications and Networks','-','-','-','-'); 126 | INSERT INTO message VALUES(2,0,0,'Networking','IFIP International Conferences on Networking','2020-01-07','2020-04-01','9页全文','[https://networking.ifip.org/2020/](https://networking.ifip.org/2020/)'); 127 | INSERT INTO message VALUES(2,0,0,'WoWMoM','IEEE International Symposium on a World of Wireless, Mobile and Multimedia Networks','-','-','-','-'); 128 | INSERT INTO message VALUES(2,0,0,'WCNC','IEEE Wireless Communications & Networking Conference','2019-10-04','2019-12-31','8页全文','[https://wcnc2020.ieee-wcnc.org/](https://wcnc2020.ieee-wcnc.org/)'); 129 | INSERT INTO message VALUES(2,0,0,'ANCS','Architectures for Networking and Communications Systems','-','-','-','-'); 130 | INSERT INTO message VALUES(2,0,0,'IWQoS','International Workshop on Quality of Service','-','-','-','-'); 131 | INSERT INTO message VALUES(2,0,0,'WiOpt','The International Symposium on Modeling and Optimization in Mobile, Ad Hoc, and Wireless Networks','-','-','-','[http://wi-opt.org/](http://wi-opt.org/)'); 132 | INSERT INTO message VALUES(2,0,0,'ICN','ACM Conference on Information Centric Networking','-','-','-','[http://www.icn2020.org/information-centric-networking/](http://www.icn2020.org/information-centric-networking/)'); 133 | INSERT INTO message VALUES(2,0,0,'CNSM','International Conference on Network and Service Management','-','-','-','-'); 134 | INSERT INTO message VALUES(3,1,1,'TIFS','IEEE Transactions on Information Forensics and Security','-','-','-','-'); 135 | INSERT INTO message VALUES(3,1,1,'-','Journal of Cryptology','-','-','-','-'); 136 | INSERT INTO message VALUES(3,1,1,'TDSC','IEEE Transactions on Dependable and Secure Computing','-','-','-','-'); 137 | INSERT INTO message VALUES(3,1,0,'-','Computers & Security','-','-','-','-'); 138 | INSERT INTO message VALUES(3,1,0,'JCS','Journal of Computer Security','-','-','-','-'); 139 | INSERT INTO message VALUES(3,1,0,'TOPS','ACM Transactions on Privacy and Security','-','-','-','-'); 140 | INSERT INTO message VALUES(3,1,0,'-','密码学报','-','-','-','-'); 141 | INSERT INTO message VALUES(3,0,1,'S&P','IEEE Symposium on Security and Privacy','-','-','-','-'); 142 | INSERT INTO message VALUES(3,0,1,'NDSS','ISOC Network and Distributed System Security Symposium','-','-','-','-'); 143 | INSERT INTO message VALUES(3,0,1,'USENIX Security','Usenix Security Symposium','2019-11-15、2020-02-15','2020-02-01、2020-05-01','13页正文,录用后改18页','[https://www.usenix.org/conference/usenixsecurity20](https://www.usenix.org/conference/usenixsecurity20)'); 144 | INSERT INTO message VALUES(3,0,1,'CCS','ACM Conference on Computer and Communications Security','-','-','-','-'); 145 | INSERT INTO message VALUES(3,0,1,'EUROCRYPT','European Cryptology Conference','-','-','-','-'); 146 | INSERT INTO message VALUES(3,0,1,'CRYPTO','International Cryptology Conference','-','-','-','-'); 147 | INSERT INTO message VALUES(3,0,1,'CHES','International Conference on Cryptographic Hardware and Embedded Systems','-','-','-','-'); 148 | INSERT INTO message VALUES(3,0,1,'ASIACRYPT','International Conference on the Theory and Application of Cryptology and Information Security','-','-','-','-'); 149 | INSERT INTO message VALUES(3,0,0,'SOUPS','Symposium On Usable Privacy and Security','-','-','-','-'); 150 | INSERT INTO message VALUES(3,0,0,'FC','Financial Cryptography and Data Security','-','-','-','-'); 151 | INSERT INTO message VALUES(3,0,0,'PETS','Privacy Enhancing Technologies Symposium','-','-','-','-'); 152 | INSERT INTO message VALUES(3,0,0,'TCC','Theory of Cryptography Conference','-','-','-','-'); 153 | INSERT INTO message VALUES(3,0,0,'PKC','International Workshop on Practice and Theory in Public Key Cryptography','-','-','-','-'); 154 | INSERT INTO message VALUES(3,0,0,'DIMVA','Detection of Intrusions and Malware & Vulnerability Assessment','-','-','-','-'); 155 | INSERT INTO message VALUES(3,0,0,'CSFW','IEEE Computer Security Foundations Workshop','-','-','-','-'); 156 | INSERT INTO message VALUES(3,0,0,'ESE','Fast Software Encryption','-','-','-','-'); 157 | INSERT INTO message VALUES(3,0,0,'ESORICS','European Symposium on Research in Computer Security','-','-','-','-'); 158 | INSERT INTO message VALUES(3,0,0,'DSN','The International Conference on Dependable Systems and Networks','-','-','-','-'); 159 | INSERT INTO message VALUES(3,0,0,'RAID','International Symposium on Recent Advances in Intrusion Detection','-','-','-','-'); 160 | INSERT INTO message VALUES(3,0,0,'IM','IFIP/IEEE International Symposium on Integrated Network Management','-','-','-','-'); 161 | INSERT INTO message VALUES(3,0,0,'CT-RSA','Cryptographer\'s Track at RSA Conference','-','-','-','-'); 162 | INSERT INTO message VALUES(3,0,0,'ACSAC','Annual Computer Security Applications Conference','-','-','-','-'); 163 | INSERT INTO message VALUES(3,0,0,'PAM','Passive and Active Network Measurement Conference','-','-','-','-'); 164 | INSERT INTO message VALUES(3,0,0,'SAC','Selected Areas in Cryptography','-','-','-','-'); 165 | INSERT INTO message VALUES(3,0,0,'AsiaCCS','Asia Conference on Computer and Communications Security','-','-','-','-'); 166 | INSERT INTO message VALUES(3,0,0,'WiSec','ACM Conference on Security and Privacy in Wireless and Mobile Networks','-','-','-','-'); 167 | INSERT INTO message VALUES(3,0,0,'ACNS','Applied Cryptography and Network Security','-','-','-','-'); 168 | INSERT INTO message VALUES(3,0,0,'IH&MMSec','ACM Workshop on Information Hiding and Multimedia Security','-','-','-','-'); 169 | INSERT INTO message VALUES(3,0,0,'SEC','IFIP International Information Security Conference','-','-','-','-'); 170 | INSERT INTO message VALUES(3,0,0,'NOMS','IEEE/IFIP Network Operations and Management Symposium','-','-','-','-'); 171 | INSERT INTO message VALUES(4,1,1,'SICOMP','SIAM Journal on Computing','-','-','-','-'); 172 | INSERT INTO message VALUES(4,1,1,'TIT','IEEE Transactions on Information Theory','-','-','-','-'); 173 | INSERT INTO message VALUES(4,1,1,'TALG','ACM Transactions on Algorithms','-','-','-','-'); 174 | INSERT INTO message VALUES(4,1,1,'IANDC','Information and Computation','-','-','-','-'); 175 | INSERT INTO message VALUES(4,1,0,'TOMS','ACM Transactions on Mathematical Software','-','-','-','-'); 176 | INSERT INTO message VALUES(4,1,0,'JCSS','Journal Of Computer and System Sciences','-','-','-','-'); 177 | INSERT INTO message VALUES(4,1,0,'FGCS','Future Generatlon Computer Systems','-','-','-','-'); 178 | INSERT INTO message VALUES(4,1,0,'Algorithmica','Algorithmica','-','-','-','-'); 179 | INSERT INTO message VALUES(4,1,0,'CC','Computational complexlty','-','-','-','-'); 180 | INSERT INTO message VALUES(4,1,0,'INFORMS','INFORMS Journal on Computing','-','-','-','-'); 181 | INSERT INTO message VALUES(4,1,0,'TOCL','ACM Transactions on Computational Logic','-','-','-','-'); 182 | INSERT INTO message VALUES(4,1,0,'JGC','Journal Of Grid Computlng','-','-','-','-'); 183 | INSERT INTO message VALUES(4,1,0,'FMSD','Formal Methods in System Design','-','-','-','-'); 184 | INSERT INTO message VALUES(4,1,0,'JGO','Journal Of Global Optimization','-','-','-','-'); 185 | INSERT INTO message VALUES(4,1,0,'JSC','Journal Of Symbolic Computation','-','-','-','-'); 186 | INSERT INTO message VALUES(4,1,0,'FAC','Formal Aspects Of Computing','-','-','-','-'); 187 | INSERT INTO message VALUES(4,1,0,'TCS','Theoretical Computer Science','-','-','-','-'); 188 | INSERT INTO message VALUES(4,0,1,'STOC','ACM Symposium on the Theory of Computing','-','-','-','-'); 189 | INSERT INTO message VALUES(4,0,1,'FOCS','IEEE Annual Symposium on Foundations of Computer Science','-','-','-','-'); 190 | INSERT INTO message VALUES(4,0,1,'SODA','ACM-SIAM Symposium on Discrete Algorithms','-','-','-','-'); 191 | INSERT INTO message VALUES(4,0,1,'CAV','Computer Aided Verification','-','-','-','-'); 192 | INSERT INTO message VALUES(4,0,1,'UCS','IEEE Symposium on Logic in Computer Science','-','-','-','-'); 193 | INSERT INTO message VALUES(4,0,1,'CCC','IEEE Conference on Computational Complexity','-','-','-','-'); 194 | INSERT INTO message VALUES(4,0,1,'ICALP','International Colloquium on Automata, Languages and Programming','-','-','-','-'); 195 | INSERT INTO message VALUES(4,0,0,'SAT','Theory and Applications of Satisfiability Testing','-','-','-','-'); 196 | INSERT INTO message VALUES(4,0,0,'CADE/IJCAR','International Conference on Automated Deduction/lnternational Joint Conference on Automated Reasoning','-','-','-','-'); 197 | INSERT INTO message VALUES(4,0,0,'SoCG','ACM Symposium on Computational Geometry','-','-','-','-'); 198 | INSERT INTO message VALUES(4,0,0,'CONCUR','International Conference on Concurrency Theory','-','-','-','-'); 199 | INSERT INTO message VALUES(4,0,0,'STACS','Symposium on Theoretical Aspects of Computer Science','-','-','-','-'); 200 | INSERT INTO message VALUES(4,0,0,'ESA','European Symposium on Algorithms','-','-','-','-'); 201 | INSERT INTO message VALUES(4,0,0,'CSL','Computer Science Logic','-','-','-','-'); 202 | INSERT INTO message VALUES(4,0,0,'FMCAD','Formal Methods in Computer-Aided Design','-','-','-','-'); 203 | INSERT INTO message VALUES(4,0,0,'ITCS/ICS','Innovations in Theoretical Computer Science','-','-','-','-'); 204 | INSERT INTO message VALUES(4,0,0,'SWAT/WADS','Scandinavian Symposium and Workshops on Algorithm Theory/ the Algorithms and Data Structures Symposium','-','-','-','-'); 205 | INSERT INTO message VALUES(4,0,0,'ISIT','IEEE International Symposium on Information Theory','-','-','-','-'); 206 | INSERT INTO message VALUES(5,1,1,'TSE','IEEE Transactions on Software Engineering','-','-','-','-'); 207 | INSERT INTO message VALUES(5,1,1,'TOSEM','ACM Transactions on Software Engineering and Methodology','-','-','-','-'); 208 | INSERT INTO message VALUES(5,1,1,'TOPLAS','ACM Transactions on Programming Languages & Systems','-','-','-','-'); 209 | INSERT INTO message VALUES(5,1,0,'TSC','IEEE Transactlons on Servlce Computlng','-','-','-','-'); 210 | INSERT INTO message VALUES(5,1,0,'IST','Information and Software Technology','-','-','-','-'); 211 | INSERT INTO message VALUES(5,1,0,'ESE','Empirical Software Engineering','-','-','-','-'); 212 | INSERT INTO message VALUES(5,1,0,'SOSyM','Software and System Modeling','-','-','-','-'); 213 | INSERT INTO message VALUES(5,1,0,'RE','Requlrements Englneerlng','-','-','-','-'); 214 | INSERT INTO message VALUES(5,1,0,'JSS','Journal of Systems and Software','-','-','-','-'); 215 | INSERT INTO message VALUES(5,1,0,'ASE','Automated Software Engineering','-','-','-','-'); 216 | INSERT INTO message VALUES(5,1,0,'SCP','Science Of Computer Programming','-','-','-','-'); 217 | INSERT INTO message VALUES(5,1,0,'STTT','International Journal on Software Tools for Technology Transfer','-','-','-','-'); 218 | INSERT INTO message VALUES(5,1,0,'STVR','Software Testing, Verification and Reliability','-','-','-','-'); 219 | INSERT INTO message VALUES(5,1,0,'SPE','Software: Practice and Experience','-','-','-','-'); 220 | INSERT INTO message VALUES(5,1,0,'-','软 件 学 报','-','-','-','-'); 221 | INSERT INTO message VALUES(5,0,1,'OSDI','USENIX Symposium on Operating Systems Design and implementations','-','-','-','[https://www.usenix.org/conference/osdi20](https://www.usenix.org/conference/osdi20)'); 222 | INSERT INTO message VALUES(5,0,1,'ICSE','International Conference on Software Engineering','-','-','-','-'); 223 | INSERT INTO message VALUES(5,0,1,'SOSP','ACM Symposium on Operating Systems Principles','-','-','-','-'); 224 | INSERT INTO message VALUES(5,0,1,'POPL','ACM SIGPLAN-SIGACT Symposium on Principles Of Programming Languages','-','-','-','-'); 225 | INSERT INTO message VALUES(5,0,1,'PLDI','ACM SIGPLAN Conference on Programming Language Design & Implementation','-','-','-','-'); 226 | INSERT INTO message VALUES(5,0,1,'FSE/ESEC','ACM SIGSOFT Symposium on the Foundation Of Software Engineering/ European Software Engineering Conference','-','-','-','-'); 227 | INSERT INTO message VALUES(5,0,1,'ISSTA','International Symposium on Software Testing and Analysls','-','-','-','-'); 228 | INSERT INTO message VALUES(5,0,1,'OOPSLA','Conference on Object-Oriented Programming Systems, Languages, and Applications','-','-','-','-'); 229 | INSERT INTO message VALUES(5,0,1,'ASE','International Conference on Automated Software Engineering','-','-','-','-'); 230 | INSERT INTO message VALUES(5,0,0,'MSR','Mining Software Repositories','-','-','-','-'); 231 | INSERT INTO message VALUES(5,0,0,'SANER','International Conference on Software Analysis, Evolution, and Reengineering','-','-','-','-'); 232 | INSERT INTO message VALUES(5,0,0,'Middleware','International Middleware Conference','-','-','-','[http://middleware-conference.org/](http://middleware-conference.org/)'); 233 | INSERT INTO message VALUES(5,0,0,'EASE','Evaluation and Assessment in Software Engineering','-','-','-','-'); 234 | INSERT INTO message VALUES(5,0,0,'ICPC','IEEE International Conference on Program Comprehension','-','-','-','-'); 235 | INSERT INTO message VALUES(5,0,0,'ICSME','International Conference on Software Maintenance and Evolution','-','-','-','-'); 236 | INSERT INTO message VALUES(5,0,0,'ISPASS','IEEE International Symposium on Performance Analysis Of Systems and Software','-','-','-','-'); 237 | INSERT INTO message VALUES(5,0,0,'ECOOP','European Conference on Object Oriented Programming','-','-','-','-'); 238 | INSERT INTO message VALUES(5,0,0,'ICST','IEEE International Conference 0 n Software Testing, Verification and Validation','-','-','-','-'); 239 | INSERT INTO message VALUES(5,0,0,'ICFP','International Conference on Function Programming','-','-','-','-'); 240 | INSERT INTO message VALUES(5,0,0,'RE','IEEE International Requirement Engineering Conference','-','-','-','-'); 241 | INSERT INTO message VALUES(5,0,0,'CAiSE','International Conference on Advanced Informatlon Systems Engineering','-','-','-','-'); 242 | INSERT INTO message VALUES(5,0,0,'HotOS','USENIX Workshop on Hot Topics in Operating Systems','-','-','-','-'); 243 | INSERT INTO message VALUES(5,0,0,'ETAPS','European Joint Conferences on Theory and Practice Of Software','-','-','-','-'); 244 | INSERT INTO message VALUES(5,0,0,'VMCAI','International Conference on Verification, Model Checking, and Abstract Interpretatlon','-','-','-','-'); 245 | INSERT INTO message VALUES(5,0,0,'ISSRE','International Symposium on Software Reliabillty Engineering','-','-','-','-'); 246 | INSERT INTO message VALUES(5,0,0,'MoDELS','International Conference on Model Driven Engineering Languages and Systems','-','-','-','-'); 247 | INSERT INTO message VALUES(5,0,0,'ESEM','International Symposium on Empirical Software Engineering and Measurement','-','-','-','-'); 248 | INSERT INTO message VALUES(5,0,0,'FM','International Symposium on Formal Methods','-','-','-','-'); 249 | INSERT INTO message VALUES(5,0,0,'EMSOFT','International Conference on Embedded Software','-','-','-','-'); 250 | INSERT INTO message VALUES(5,0,0,'SCC','International Conference on Service Computing','-','-','-','-'); 251 | INSERT INTO message VALUES(5,0,0,'ICWS','International Conference on Web Services (Research Track)','-','-','-','-'); 252 | INSERT INTO message VALUES(5,0,0,'CP','International Conference on Principles and Practice of Constraint Programming','-','-','-','-'); 253 | INSERT INTO message VALUES(5,0,0,'ATVA','International Symposium on Automated Technology for Verification and Analysis','-','-','-','-'); 254 | INSERT INTO message VALUES(6,1,1,'TKDE','IEEE Transactions on Knowledge and Data Engineering','-','-','-','-'); 255 | INSERT INTO message VALUES(6,1,1,'VLDBJ','The VLDB Journal','-','-','-','-'); 256 | INSERT INTO message VALUES(6,1,1,'TODS','ACM Transactions on Database Systems','-','-','-','-'); 257 | INSERT INTO message VALUES(6,1,1,'TOIS','ACM Transactions on Information Systems','-','-','-','-'); 258 | INSERT INTO message VALUES(6,1,0,'I&M','Information and Management','-','-','-','-'); 259 | INSERT INTO message VALUES(6,1,0,'EJIS','European Journal of Information Systems','-','-','-','-'); 260 | INSERT INTO message VALUES(6,1,0,'IJGIS','International Journal of Geographical Information Science','-','-','-','-'); 261 | INSERT INTO message VALUES(6,1,0,'J. Strategic Inf. Sys.','Journal of Strategic Information Systems','-','-','-','-'); 262 | INSERT INTO message VALUES(6,1,0,'JASIST','Journal of the American Society for Information Science and Technology','-','-','-','-'); 263 | INSERT INTO message VALUES(6,1,0,'IPM','Information Processing and Management','-','-','-','-'); 264 | INSERT INTO message VALUES(6,1,0,'IS','Information Systems','-','-','-','-'); 265 | INSERT INTO message VALUES(6,1,0,'JWS','Journal of Web Semantics','-','-','-','-'); 266 | INSERT INTO message VALUES(6,1,0,'DMKD','Data Mining and Knowledge Discovery','-','-','-','-'); 267 | INSERT INTO message VALUES(6,1,0,'KAIS','Knowledge and Information Systems','-','-','-','-'); 268 | INSERT INTO message VALUES(6,1,0,'TKDD','ACM Transactions on Knowledge Discovery from Data','-','-','-','-'); 269 | INSERT INTO message VALUES(6,1,0,'AEI','Advanced Engineering Informatics','-','-','-','-'); 270 | INSERT INTO message VALUES(6,1,0,'IJIS','International Journal of Intelligent Systems','-','-','-','-'); 271 | INSERT INTO message VALUES(6,1,0,'TWEB','ACM Transactions on the Web','-','-','-','-'); 272 | INSERT INTO message VALUES(6,1,0,'-','Information Sciences','-','-','-','-'); 273 | INSERT INTO message VALUES(6,1,0,'-','Geolnformatica','-','-','-','-'); 274 | INSERT INTO message VALUES(6,1,0,'DKE','Data and Knowledge Engineering','-','-','-','-'); 275 | INSERT INTO message VALUES(6,0,1,'SIGMOD','ACM Conference on Management Of Data','2019-10-22','2019-12-10','正文14页','[https://sigmod2020.org/](https://sigmod2020.org/)'); 276 | INSERT INTO message VALUES(6,0,1,'SIGKDD','ACM Knowledge Discovery and Data Mining','-','-','-','-'); 277 | INSERT INTO message VALUES(6,0,1,'SIGIR','International Conference on Research on Development in Information Retrieval','2020-01-15','2020-04-20','短文4,长文10页','[https://sigir.org/sigir2020/](https://sigir.org/sigir2020/)'); 278 | INSERT INTO message VALUES(6,0,1,'WSDM','ACM International Conference on Web Search and Data Mining','-','-','-','-'); 279 | INSERT INTO message VALUES(6,0,1,'VLDB','International Conference on Very Large Data Bases','-','-','-','-'); 280 | INSERT INTO message VALUES(6,0,1,'ICDE','IEEE International Conference on Data Engineering','-','-','-','-'); 281 | INSERT INTO message VALUES(6,0,1,'PODS','ACM Symposium on Principles Of Database Systems','-','-','-','-'); 282 | INSERT INTO message VALUES(6,0,0,'ISWC','IEEE International Semantic Web Conference','-','-','-','-'); 283 | INSERT INTO message VALUES(6,0,0,'CIKM','ACM International Conference on Information and Knowledge Management','-','-','-','-'); 284 | INSERT INTO message VALUES(6,0,0,'SDM','SIAM International Conference on Data Mining','-','-','-','-'); 285 | INSERT INTO message VALUES(6,0,0,'ICDT','International Conference on Database Theory','-','-','-','-'); 286 | INSERT INTO message VALUES(6,0,0,'ICDM','International Conference on Data Mining','-','-','-','-'); 287 | INSERT INTO message VALUES(6,0,0,'ECIR','European Conference on IR Research','-','-','-','-'); 288 | INSERT INTO message VALUES(6,0,0,'EDBT','International Conference on Extending Database Technology','-','-','-','-'); 289 | INSERT INTO message VALUES(6,0,0,'CIDR','International Conference on Innovative Data Systems Research','-','-','-','-'); 290 | INSERT INTO message VALUES(6,0,0,'DASFAA','Database Systems for Advanced Applications','-','-','-','-'); 291 | INSERT INTO message VALUES(7,1,1,'TPAMI','IEEE Trans on Pattern Analysis and Machine Intelligence','-','-','-','-'); 292 | INSERT INTO message VALUES(7,1,1,'IJCV','International Journal of Computer Vision','-','-','-','-'); 293 | INSERT INTO message VALUES(7,1,1,'JMLR','Journal of Machine Learning Research','-','-','-','-'); 294 | INSERT INTO message VALUES(7,1,1,'TR','IEEE Transactions on Robotics','-','-','-','-'); 295 | INSERT INTO message VALUES(7,1,1,'Al','Artificial Intelligence','-','-','-','-'); 296 | INSERT INTO message VALUES(7,1,1,'TASLP','IEEE Transactions on Audio Speech, and Language Processing','-','-','-','-'); 297 | INSERT INTO message VALUES(7,1,0,'TEC','IEEE Transactions on Evolutionary Computation','-','-','-','-'); 298 | INSERT INTO message VALUES(7,1,0,'TNNLS','IEEE Transactions on Neural Networks and learning systems','-','-','-','-'); 299 | INSERT INTO message VALUES(7,1,0,'-','IEEE Transactions on Cybernetics','-','-','-','-'); 300 | INSERT INTO message VALUES(7,1,0,'TFS','IEEE Transactlons on Fuzzy Systems','-','-','-','-'); 301 | INSERT INTO message VALUES(7,1,0,'PR','Pattern Recognltlon','-','-','-','-'); 302 | INSERT INTO message VALUES(7,1,0,'TAC','IEEE Transactions on Affective Comput\'ng','-','-','-','-'); 303 | INSERT INTO message VALUES(7,1,0,'JBI','Journal Of Biomedical Informatics','-','-','-','-'); 304 | INSERT INTO message VALUES(7,1,0,'-','Neural Networks','-','-','-','-'); 305 | INSERT INTO message VALUES(7,1,0,'-','KNOWLEDGE-BASED SYSTEMS','-','-','-','-'); 306 | INSERT INTO message VALUES(7,1,0,'Expert Syst. Appl.','Expert Systems with Applications','-','-','-','-'); 307 | INSERT INTO message VALUES(7,1,0,'PRL','Pattern Recognltlon Letters','-','-','-','-'); 308 | INSERT INTO message VALUES(7,1,0,'JAIR','Journal Of Artificial Intelligence Research','-','-','-','-'); 309 | INSERT INTO message VALUES(7,1,0,'CVIU','Computer Vision and Image Understanding','-','-','-','-'); 310 | INSERT INTO message VALUES(7,1,0,'EAAI','Engineering Applications Of Artificial Intelligence','-','-','-','-'); 311 | INSERT INTO message VALUES(7,1,0,'-','International Journal Of Neural Systems','-','-','-','-'); 312 | INSERT INTO message VALUES(7,1,0,'-','Neurocomputlng','-','-','-','-'); 313 | INSERT INTO message VALUES(7,1,0,'-','Evolutionary Computation','-','-','-','-'); 314 | INSERT INTO message VALUES(7,1,0,'-','Computational Linguistics','-','-','-','-'); 315 | INSERT INTO message VALUES(7,1,0,'-','Machine Learning','-','-','-','-'); 316 | INSERT INTO message VALUES(7,1,0,'AIM','Artificial Intelligence in Medicine','-','-','-','-'); 317 | INSERT INTO message VALUES(7,1,0,'-','Image and Vision Computlng','-','-','-','-'); 318 | INSERT INTO message VALUES(7,1,0,'-','Computer Speech and Language','-','-','-','-'); 319 | INSERT INTO message VALUES(7,1,0,'-','Journal Of Automated Reasoning','-','-','-','-'); 320 | INSERT INTO message VALUES(7,1,0,'IJAR','International Journal Of Approximate Reasoning','-','-','-','-'); 321 | INSERT INTO message VALUES(7,1,0,'AAMAS','Autonomous Agents and Multi-Agent Systems','-','-','-','-'); 322 | INSERT INTO message VALUES(7,1,0,'IJIS','International Journal Of Intelligent Systems','-','-','-','-'); 323 | INSERT INTO message VALUES(7,1,0,'TG','IEEE Transactlons on Games','-','-','-','-'); 324 | INSERT INTO message VALUES(7,1,0,'JSLHR','Journal Of Speech, Language, and Hearing Research','-','-','-','-'); 325 | INSERT INTO message VALUES(7,1,0,'-','Neural Computation','-','-','-','-'); 326 | INSERT INTO message VALUES(7,1,0,'-','Applied Intelligence','-','-','-','-'); 327 | INSERT INTO message VALUES(7,1,0,'TACL','Transactions of the Association for Computational Linguistics','-','-','-','-'); 328 | INSERT INTO message VALUES(7,1,0,'-','智 能 系 统 学 报','-','-','-','-'); 329 | INSERT INTO message VALUES(7,1,0,'-','中 文 信 息 学 报','-','-','-','-'); 330 | INSERT INTO message VALUES(7,0,1,'CVPR','IEEE Conference on Computer Vision and Pattern Recognition','-','-','-','-'); 331 | INSERT INTO message VALUES(7,0,1,'ICCV','International Conference on Computer Vision','-','-','-','-'); 332 | INSERT INTO message VALUES(7,0,1,'ICML','International Conference on Machine Learning','-','-','-','-'); 333 | INSERT INTO message VALUES(7,0,1,'ACL','Annual Meeting of the Association for Computational Linguistics','-','-','-','-'); 334 | INSERT INTO message VALUES(7,0,1,'ECCV','European Conference on Computer Vision','-','-','-','-'); 335 | INSERT INTO message VALUES(7,0,1,'COLT','Annual Conference on Computational Learning Theory','-','-','-','-'); 336 | INSERT INTO message VALUES(7,0,1,'NeuriPS','Annual Conference on Neural Information Processing Systems','-','-','-','-'); 337 | INSERT INTO message VALUES(7,0,1,'AAA I','AAAI Conference on Artificial Intelligence','-','-','-','-'); 338 | INSERT INTO message VALUES(7,0,1,'EMNLP','Conference on Empirical Methods in Natural Language Processing','-','-','-','-'); 339 | INSERT INTO message VALUES(7,0,1,'ICRA','IEEE International Conference on Robotics and Automation','-','-','-','-'); 340 | INSERT INTO message VALUES(7,0,1,'ICLR','International Conference on Learning Representations','-','-','-','-'); 341 | INSERT INTO message VALUES(7,0,1,'RSS','Robotics: Science and Systems • A Robotics Conference','-','-','-','-'); 342 | INSERT INTO message VALUES(7,0,0,'BMVC','British Machine Vision Conference','-','-','-','-'); 343 | INSERT INTO message VALUES(7,0,0,'AISTATS','Artificial Intelligence and Statistics','-','-','-','-'); 344 | INSERT INTO message VALUES(7,0,0,'NAACL','The Annual Conference of the North American Chapter of the Association for Computational Linguistics','-','-','-','-'); 345 | INSERT INTO message VALUES(7,0,0,'IJCAI','International Joint Conference on Artificial Intelligence','-','-','-','-'); 346 | INSERT INTO message VALUES(7,0,0,'AAMAS','International Joint Conference on Autonomous Agents and Multi-agent Systems','-','-','-','-'); 347 | INSERT INTO message VALUES(7,0,0,'ICAPS','International Conference on Automated Planning and Scheduling','-','-','-','-'); 348 | INSERT INTO message VALUES(7,0,0,'ICB','International Joint Conference on Biometrics','-','-','-','-'); 349 | INSERT INTO message VALUES(7,0,0,'GECCO','Genetic and Evolutionary Computation Conference','-','-','-','-'); 350 | INSERT INTO message VALUES(7,0,0,'ICPR','International Conference on Pattern Recognition','-','-','-','-'); 351 | INSERT INTO message VALUES(7,0,0,'FG','International Conference on Automatic Face and Gesture Recognition','-','-','-','-'); 352 | INSERT INTO message VALUES(7,0,0,'ICDAR','International Conference on Document Analysis and Recognition','-','-','-','-'); 353 | INSERT INTO message VALUES(7,0,0,'IROS','IEEE\RSJ International Conference on Intelligent Robots and Systems','-','-','-','-'); 354 | INSERT INTO message VALUES(7,0,0,'COLING','International Conference on Computational Linguistics','-','-','-','-'); 355 | INSERT INTO message VALUES(7,0,0,'IJCNN','International Joint Conference on Neural Networks','-','-','-','-'); 356 | INSERT INTO message VALUES(7,0,0,'UAI','International Conference on Uncertainty in Artificial Intelligence','-','-','-','-'); 357 | INSERT INTO message VALUES(7,0,0,'ALT','International Conference on Algorithmic Learning Theory','-','-','-','-'); 358 | INSERT INTO message VALUES(7,0,0,'RecSys','Conference on Recommender Systems','-','-','-','-'); 359 | INSERT INTO message VALUES(8,1,1,'TIP','IEEE Transactions on Image Processing','-','-','-','-'); 360 | INSERT INTO message VALUES(8,1,1,'TOG','ACM Transactions on Graphics','-','-','-','-'); 361 | INSERT INTO message VALUES(8,1,1,'TMM','IEEE Transactions on Multimedia','-','-','-','-'); 362 | INSERT INTO message VALUES(8,1,1,'TVCG','IEEE Transactions on Visualization and Computer Graphics','-','-','-','-'); 363 | INSERT INTO message VALUES(8,1,1,'CAD','Computer-Aided Design','-','-','-','-'); 364 | INSERT INTO message VALUES(8,1,0,'-','Signal Processing','-','-','-','-'); 365 | INSERT INTO message VALUES(8,1,0,'TCSVT','IEEE Transactions on Circuits and Systems for Video Technology','-','-','-','-'); 366 | INSERT INTO message VALUES(8,1,0,'SilMS','SIAM Journal on Imaging Sciences','-','-','-','-'); 367 | INSERT INTO message VALUES(8,1,0,'CG','Computers & Graphics','-','-','-','-'); 368 | INSERT INTO message VALUES(8,1,0,'SPL','IEEE Signal Processing Letters','-','-','-','-'); 369 | INSERT INTO message VALUES(8,1,0,'CGF','Computer Graphics Forum','-','-','-','-'); 370 | INSERT INTO message VALUES(8,1,0,'Speech Com','Speech Communication','-','-','-','-'); 371 | INSERT INTO message VALUES(8,1,0,'CAGD','Computer Aided Geometric Design','-','-','-','-'); 372 | INSERT INTO message VALUES(8,1,0,'-','计算机辅助设计与图形学学报','-','-','-','-'); 373 | INSERT INTO message VALUES(8,1,0,'-','中国图像图形学报','-','-','-','-'); 374 | INSERT INTO message VALUES(8,1,0,'-','图学学报','-','-','-','-'); 375 | INSERT INTO message VALUES(8,0,1,'SIGGRAPH','ACM SIGGRAPH Annual Conference','-','-','-','-'); 376 | INSERT INTO message VALUES(8,0,1,'IEEE VIS','IEEE Visualization Conference','-','-','-','-'); 377 | INSERT INTO message VALUES(8,0,1,'ACM MM','ACM International Conference on Multimedia','-','-','-','-'); 378 | INSERT INTO message VALUES(8,0,1,'VR','IEEE Virtual Reality','-','-','-','-'); 379 | INSERT INTO message VALUES(8,0,0,'SPM','Symposium on Solid and Physical Modeling','-','-','-','-'); 380 | INSERT INTO message VALUES(8,0,0,'EGSR','Eurographics Symposium on Rendering','-','-','-','-'); 381 | INSERT INTO message VALUES(8,0,0,'ISMAR','International Symposium on Mixed and Augmented Reality','-','-','-','-'); 382 | INSERT INTO message VALUES(8,0,0,'EG','Eurographics','-','-','-','-'); 383 | INSERT INTO message VALUES(8,0,0,'SGP','Eurographics Symposium on Geometry Processing','-','-','-','-'); 384 | INSERT INTO message VALUES(8,0,0,'SCA','ACM/Eurographics Symposium on Computer Animation','-','-','-','-'); 385 | INSERT INTO message VALUES(8,0,0,'EuroVis','Eurographics Conference on Visualization','-','-','-','-'); 386 | INSERT INTO message VALUES(8,0,0,'ICASSP','IEEE International Conference on Acoustics, Speech and SP','-','-','-','-'); 387 | INSERT INTO message VALUES(8,0,0,'ICMR','ACM SIGMM International Conference on Multimedia Retrieval','-','-','-','-'); 388 | INSERT INTO message VALUES(8,0,0,'ICIP','International Conference on Image Processing','-','-','-','-'); 389 | INSERT INTO message VALUES(8,0,0,'SI3D','ACM Symposium on Interactive 3D Graphics','-','-','-','-'); 390 | INSERT INTO message VALUES(8,0,0,'PacificVis','IEEE Pacific Visualization Symposium','-','-','-','-'); 391 | INSERT INTO message VALUES(8,0,0,'PG','Pacific Graphics: The Pacific Conference on Computer Graphics and Applications','-','-','-','-'); 392 | INSERT INTO message VALUES(8,0,0,'DCC','Data Compression Conference','2019-11-01','-','10页全文','[https://www.cs.brandeis.edu/~dcc/](https://www.cs.brandeis.edu/~dcc/)'); 393 | INSERT INTO message VALUES(9,1,1,'IJHCS','International Journal of Human Computer Studies','-','-','-','-'); 394 | INSERT INTO message VALUES(9,1,1,'TOCHI','ACM Transactions on Computer-Human Interaction','-','-','-','-'); 395 | INSERT INTO message VALUES(9,1,0,'UMUAI','User Modeling and User-Adapted Interaction','-','-','-','-'); 396 | INSERT INTO message VALUES(9,1,0,'-','IEEE Transactions on Human-Machine Systems','-','-','-','-'); 397 | INSERT INTO message VALUES(9,1,0,'HCI','Human Computer Interaction','-','-','-','-'); 398 | INSERT INTO message VALUES(9,1,0,'PMC','Pervasive and Mobile Computing','-','-','-','-'); 399 | INSERT INTO message VALUES(9,1,0,'IJHCI','International Journal of Human-Computer Interaction','-','-','-','-'); 400 | INSERT INTO message VALUES(9,1,0,'BIT','Behaviour & Information Technology','-','-','-','-'); 401 | INSERT INTO message VALUES(9,1,0,'CSCW','Computer Supported Cooperative Work','-','-','-','-'); 402 | INSERT INTO message VALUES(9,1,0,'IWC','Interacting with Computers','-','-','-','-'); 403 | INSERT INTO message VALUES(9,0,1,'CSCW','ACM Conference on Computer Supported Cooperative Work and Social Computing','-','-','-','-'); 404 | INSERT INTO message VALUES(9,0,1,'UbiComp','ACM International Conference on Ubiquitous Computing','2019-11-15','within 8 weeks','13-16页正文','[http://ubicomp.org/ubicomp2020/](http://ubicomp.org/ubicomp2020/)'); 405 | INSERT INTO message VALUES(9,0,1,'UIST','ACM Symposium on User Interface Software and Technology','-','-','-','-'); 406 | INSERT INTO message VALUES(9,0,1,'CHI','ACM Conference on Human Factors in Computing Systems','-','-','-','-'); 407 | INSERT INTO message VALUES(9,0,0,'PERCOM','IEEE International Conference on Pervasive Computing and Communications','-','-','-','-'); 408 | INSERT INTO message VALUES(9,0,0,'IUI','ACM International Conference on Intelligent User Interfaces','-','-','-','-'); 409 | INSERT INTO message VALUES(9,0,0,'MobileHCl','International Conference on Human Computer Interaction with Mobile Devices and Services','-','-','-','-'); 410 | INSERT INTO message VALUES(9,0,0,'DIS','ACM Conference on Designing Interactive Systems','-','-','-','-'); 411 | INSERT INTO message VALUES(9,0,0,'ICMI','ACM International Conference on Multimodal Interaction','-','-','-','-'); 412 | INSERT INTO message VALUES(10,1,1,'JACM','Journal of the ACM','-','-','-','-'); 413 | INSERT INTO message VALUES(10,1,1,'Proc. IEEE','Proceedings of the IEEE','-','-','-','-'); 414 | INSERT INTO message VALUES(10,1,1,'-','Science China','-','-','-','-'); 415 | INSERT INTO message VALUES(10,1,1,'-','中国科学','-','-','-','-'); 416 | INSERT INTO message VALUES(10,1,0,'TMI','IEEE Transactions on Medical Imaging','-','-','-','-'); 417 | INSERT INTO message VALUES(10,1,0,'-','Briefings in Bioinformatics','-','-','-','-'); 418 | INSERT INTO message VALUES(10,1,0,'TITS','IEEE Transactions on Intelligent Transportation Systems','-','-','-','-'); 419 | INSERT INTO message VALUES(10,1,0,'TGARS','IEEE Transactions on Geoscience and Remote Sensing','-','-','-','-'); 420 | INSERT INTO message VALUES(10,1,0,'TASAE','IEEE Transactions on Automation Science and Engineering','-','-','-','-'); 421 | INSERT INTO message VALUES(10,1,0,'-','Bioinformatics','-','-','-','-'); 422 | INSERT INTO message VALUES(10,1,0,'JAMIA','Journal of the American Medical Informatics Association','-','-','-','-'); 423 | INSERT INTO message VALUES(10,1,0,'JBHI','IEEE Journal of Biomedical and Health Informatics','-','-','-','-'); 424 | INSERT INTO message VALUES(10,1,0,'TBD','IEEE Transactions on Big Data','-','-','-','-'); 425 | INSERT INTO message VALUES(10,1,0,'-','BMC Bioinformatics','-','-','-','-'); 426 | INSERT INTO message VALUES(10,1,0,'GRSL','IEEE Geoscience and Remote Sensing Letters','-','-','-','-'); 427 | INSERT INTO message VALUES(10,1,0,'TCBB','IEEE-ACM Transactions on Computational Biology and Bioinformatics','-','-','-','-'); 428 | INSERT INTO message VALUES(10,1,0,'JCST','Journal of Computer Science and Technology','-','-','-','-'); 429 | INSERT INTO message VALUES(10,1,0,'-','Tsinghua Science and Technology','-','-','-','-'); 430 | INSERT INTO message VALUES(10,1,0,'-','计算机学报','-','-','-','-'); 431 | INSERT INTO message VALUES(10,1,0,'-','计算机研究与发展','-','-','-','-'); 432 | INSERT INTO message VALUES(10,1,0,'-','电子学报','-','-','-','-'); 433 | INSERT INTO message VALUES(10,1,0,'-','自动化学报','-','-','-','-'); 434 | INSERT INTO message VALUES(10,1,0,'-','系统仿真学报','-','-','-','-'); 435 | INSERT INTO message VALUES(10,1,0,'-','清华大学学报(自然科学版)','-','-','-','-'); 436 | INSERT INTO message VALUES(10,0,1,'RECOMB','International Conference on Research in Computational Molecular Biology','-','-','-','-'); 437 | INSERT INTO message VALUES(10,0,1,'ISMB','International conference on Intelligent Systems for Molecular Biology','-','-','-','-'); 438 | INSERT INTO message VALUES(10,0,1,'WWW','International World Wide Web Conferences','2019-10-14','2020-1-10','长文12页,短文6页','[https://www2020.thewebconf.org/](https://www2020.thewebconf.org/)'); 439 | INSERT INTO message VALUES(10,0,1,'EC','ACM Conference on Economics and Computation','-','-','-','-'); 440 | INSERT INTO message VALUES(10,0,0,'HSCC','International Conference on Hybrid Systems: Computation and Control','-','-','-','-'); 441 | INSERT INTO message VALUES(10,0,0,'MICCAI','International Conference on Medical Image Computing and Computer Assisted Intervention','-','-','-','-'); 442 | INSERT INTO message VALUES(10,0,0,'BPM','International Conference on Business Process Management','-','-','-','-'); 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 | 454 | 455 | 456 | 457 | 458 | 459 | 460 | 461 | 462 | 463 | 464 | UPDATE message SET deadline='2019-08-16' WHERE name='ASPLOS' OR fullname='Architectural Support for Programming Languages and Operating Systems'; 465 | UPDATE message SET deadline='2019-11-27' WHERE name='DAC' OR fullname='Design Automation Conference'; 466 | UPDATE message SET deadline='2019-09-26' WHERE name='FAST' OR fullname='Conference on File and Storage Technologies'; 467 | UPDATE message SET deadline='2019-08-06' WHERE name='HPCA' OR fullname='High-Performance Computer Architecture'; 468 | UPDATE message SET deadline='2019-11-26' WHERE name='ISCA' OR fullname='International Symposium on Computer Architecture'; 469 | UPDATE message SET deadline='2019-04-05' WHERE name='MICRO' OR fullname='International Symposium on Microarchitecture'; 470 | UPDATE message SET deadline='2019-08-06' WHERE name='PPoPP' OR fullname='ACM SIGPLAN Annual Symposium Principles and Practice of Parallel Programming'; 471 | UPDATE message SET deadline='2020-04-08' WHERE name='SC' OR fullname='International Conference for High Performance Computing, Networking, Storage, and Analysis'; 472 | UPDATE message SET deadline='2020-01-15' WHERE name='USENIX ATC' OR fullname='USENIX Annual Technical Conference'; 473 | UPDATE message SET deadline='2019-09-06' WHERE name='CGO' OR fullname='Code Generation and Optimization'; 474 | UPDATE message SET deadline='2019-12-15' WHERE name='CGO - SRC' OR fullname='CGO-Student Research Competition (SRC)'; 475 | UPDATE message SET deadline='2020-05-10' WHERE name='CLUSTER' OR fullname='Cluster Computing'; 476 | UPDATE message SET deadline='2020-04-10' WHERE name='CODES+ISSS' OR fullname='International Conference on Hardware/Software Codesign and System Synthesis'; 477 | UPDATE message SET deadline='2019-09-08' WHERE name='DATE' OR fullname='Design, Automation & Test in Europe Conference'; 478 | UPDATE message SET deadline='2019-11-04' WHERE name='EuroSys' OR fullname='European Conference on Computer Systems'; 479 | UPDATE message SET deadline='2019-09-09' WHERE name='FPGA' OR fullname='ACM/SIGDA International Symposium on Field-Programmable Gate Arrays'; 480 | UPDATE message SET deadline='2020-01-23' WHERE name='HPDC' OR fullname='ACM Symposium on High-Performance Parallel and Distributed Computing'; 481 | UPDATE message SET deadline='2019-06-01' WHERE name='HiPEAC' OR fullname='International Conference on High-Performance Embedded Architectures and Compilers'; 482 | UPDATE message SET deadline='2019-03-23' WHERE name='Hot Chips' OR fullname='A Symposium on High Performance Chips'; 483 | UPDATE message SET deadline='2019-04-08' WHERE name='ICCAD' OR fullname='International Conference On Computer Aided Design'; 484 | UPDATE message SET deadline='2019-06-28' WHERE name='ICCD' OR fullname='IEEE International Conference on Computer Design'; 485 | UPDATE message SET deadline='2020-01-13' WHERE name='ICDCS' OR fullname='International Conference on Distributed Computing Systems'; 486 | UPDATE message SET deadline='2020-03-17' WHERE name='ICPP' OR fullname='International Conference on Parallel Processing'; 487 | UPDATE message SET deadline='2020-01-31' WHERE name='ICS' OR fullname='International Conference on Supercomputing'; 488 | UPDATE message SET deadline='2019-10-14' WHERE name='IPDPS' OR fullname='International Parallel & Distributed Processing Symposium'; 489 | UPDATE message SET deadline='2020-04-03' WHERE name='ITC' OR fullname='International Test Conference'; 490 | UPDATE message SET deadline='2019-06-18' WHERE name='LISA' OR fullname='Large Installation system Administration Conference'; 491 | UPDATE message SET deadline='2019-01-07' WHERE name='MSST' OR fullname='International Conference on Massive Storage Systems and Technologies'; 492 | UPDATE message SET deadline='2019-04-15' WHERE name='PACT' OR fullname='International Conference on Parallel Architectures and Compilation Techniques'; 493 | UPDATE message SET deadline='2020-02-17' WHERE name='PODC' OR fullname='ACM Symposium on Principles of Distributed Computing'; 494 | UPDATE message SET deadline='2019-02-18' WHERE name='Performance' OR fullname='International Symposium on Computer Performance, Modeling, Measurements and Evaluation'; 495 | UPDATE message SET deadline='2019-10-23' WHERE name='RTAS' OR fullname='Real-Time and Embedded Technology and Applications Symposium'; 496 | UPDATE message SET deadline='2020-02-03' WHERE name='SIGMETRICS' OR fullname='International Conference on Measurement and Modeling of Computer Systems'; 497 | UPDATE message SET deadline='2020-02-15' WHERE name='SPAA' OR fullname='ACM Symposium on Parallelism in Algorithms and Architectures'; 498 | UPDATE message SET deadline='2019-06-10' WHERE name='SoCC' OR fullname='ACM Symposium on Cloud Computing'; 499 | UPDATE message SET deadline='2019-12-06' WHERE name='VEE' OR fullname='ACM SIGPLAN/SIGOPS International Conference on Virtual Execution Environment'; 500 | UPDATE message SET deadline='2019-04-15' WHERE name='ASAP' OR fullname='Application-Specific Systems, Architectures, and Processors'; 501 | UPDATE message SET deadline='2019-07-05' WHERE name='ASP-DAC' OR fullname='Asia and South Pacific Design Automation Conference'; 502 | UPDATE message SET deadline='2019-08-30' WHERE name='ATS' OR fullname='IEEE Asian Test Symposium'; 503 | UPDATE message SET deadline='2020-04-10' WHERE name='CASES' OR fullname='International Conference on Compilers, Architecture, and Synthesis for Embedded Systems'; 504 | UPDATE message SET deadline='2019-12-10' WHERE name='CCGRID' OR fullname='IEEE/ACM International Symposium on Cluster, Cloud and Grid'; 505 | UPDATE message SET deadline='2020-01-28' WHERE name='CF' OR fullname='ACM International Conference on Computing Frontiers'; 506 | UPDATE message SET deadline='2019-12-09' WHERE name='ETS' OR fullname='IEEE European Test Symposium'; 507 | UPDATE message SET deadline='2020-01-31' WHERE name='Euro-Par' OR fullname='International European Conference on Parallel and Distributed Computing'; 508 | UPDATE message SET deadline='2020-01-13' WHERE name='FCCM' OR fullname='IEEE International Symposium on Field-Programmable Custom Computing Machines'; 509 | UPDATE message SET deadline='2019-03-29' WHERE name='FPL' OR fullname='Field-Programmable Logic and Applications'; 510 | UPDATE message SET deadline='2019-07-22' WHERE name='FPT' OR fullname='International Conference on Field-Programmable Technology'; 511 | UPDATE message SET deadline='2019-12-17' WHERE name='GLSVLSI' OR fullname='Great Lakes Symposium on VLSI Systems'; 512 | UPDATE message SET deadline='2019-02-10' WHERE name='HPCC' OR fullname='IEEE International Conference on High Performance Computing and Communications'; 513 | UPDATE message SET deadline='2019-06-14' WHERE name='HiPC' OR fullname='IEEE International Conference on High Performance Computing, Data, and Analytics'; 514 | UPDATE message SET deadline='2019-05-10' WHERE name='Hot Interconnects' OR fullname='Symposium on High-Performance Interconnects'; 515 | UPDATE message SET deadline='2020-05-01' WHERE name='ICA3PP' OR fullname='International Conference on Algorithms and Architectures for Parallel Processing'; 516 | UPDATE message SET deadline='2019-07-21' WHERE name='ICPADS' OR fullname='International Conference on Parallel and Distributed Systems'; 517 | UPDATE message SET deadline='2019-10-20' WHERE name='ISCAS' OR fullname='International Symposium on Circuits and Systems'; 518 | UPDATE message SET deadline='2020-03-09' WHERE name='ISLPED' OR fullname='International Symposium on Low Power Electronics and Design'; 519 | UPDATE message SET deadline='2019-08-18' WHERE name='ISPA' OR fullname='IEEE International Symposium on Parallel and Distributed Processing with Applications'; 520 | UPDATE message SET deadline='2019-10-07' WHERE name='ISPD' OR fullname='International Symposium on Physical Design'; 521 | UPDATE message SET deadline='2019-05-03' WHERE name='MASCOTS' OR fullname='Modeling, Analysis, and Simulation On Computer and Telecommunication Systems'; 522 | UPDATE message SET deadline='2019-05-17' WHERE name='NOCS' OR fullname='International Symposium on Networks-on-Chip'; 523 | UPDATE message SET deadline='2019-05-15' WHERE name='NPC' OR fullname='IFIP International Conference on Network and Parallel Computing'; 524 | UPDATE message SET deadline='2020-03-03' WHERE name='Systor' OR fullname='International Systems and Storage Conference'; 525 | UPDATE message SET deadline='2019-10-11' WHERE name='VTS' OR fullname='VLSI Test Symposium'; 526 | UPDATE message SET deadline='2019-07-31' WHERE name='INFOCOM' OR fullname='IEEE International Conference on Computer Communications'; 527 | UPDATE message SET deadline='2020-03-11' WHERE name='MobiCom' OR fullname='ACM International Conference on Mobile Computing and Networking'; 528 | UPDATE message SET deadline='2019-09-19' WHERE name='NSDI' OR fullname='Symposium on Networked Systems Design and Implementation'; 529 | UPDATE message SET deadline='2020-02-07' WHERE name='SIGCOMM' OR fullname='ACM International Conference on the applications, technologies, architectures, and protocols for computer communication'; 530 | UPDATE message SET deadline='2019-06-26' WHERE name='CoNEXT' OR fullname='ACM International Conference on emerging Networking EXperiments and Technologies'; 531 | UPDATE message SET deadline='2019-05-31' WHERE name='ICNP' OR fullname='IEEE International Conference on Network Protocols'; 532 | UPDATE message SET deadline='2019-05-10' WHERE name='IMC' OR fullname='Internet Measurement Conference'; 533 | UPDATE message SET deadline='2019-10-23' WHERE name='IPSN' OR fullname='International Conference on Information Processing in Sensor Networks'; 534 | UPDATE message SET deadline='2019-03-01' WHERE name='IWQoS' OR fullname='International Workshop on Quality of Service'; 535 | UPDATE message SET deadline='2019-12-06' WHERE name='MobiHoc' OR fullname='International Symposium on Mobile Ad Hoc Networking and Computing'; 536 | UPDATE message SET deadline='2019-12-12' WHERE name='MobiSys' OR fullname='International Conference on Mobile Systems, Applications, and Services'; 537 | UPDATE message SET deadline='2019-02-24' WHERE name='NOSSDAV' OR fullname='Network and Operating System Support for Digital Audio and Video'; 538 | UPDATE message SET deadline='2020-01-12' WHERE name='SECON' OR fullname='IEEE Communications Society Conference on Sensor and Ad Hoc Communications and Networks'; 539 | UPDATE message SET deadline='2019-04-12' WHERE name='SenSys' OR fullname='ACM Conference on Embedded Networked Sensor Systems'; 540 | UPDATE message SET deadline='2019-07-15' WHERE name='ANCS' OR fullname='Architectures for Networking and Communications Systems'; 541 | UPDATE message SET deadline='2019-05-07' WHERE name='APNOMS' OR fullname='Asia-Pacific Network Operations and Management Symposium'; 542 | UPDATE message SET deadline='2020-02-14' WHERE name='FORTE' OR fullname='Formal Techniques for Networked and Distributed Systems'; 543 | UPDATE message SET deadline='2019-04-01' WHERE name='Globecom' OR fullname='IEEE Global Communications Conference, incorporating the Global Internet Symposium'; 544 | UPDATE message SET deadline='2019-06-28' WHERE name='HotNets' OR fullname='The Workshop on Hot Topics in Networks'; 545 | UPDATE message SET deadline='2019-10-14' WHERE name='ICC' OR fullname='IEEE International Conference on Communications'; 546 | UPDATE message SET deadline='2020-03-02' WHERE name='ICCCN' OR fullname='IEEE International Conference on Computer Communications and Networks'; 547 | UPDATE message SET deadline='2018-08-18' WHERE name='IM' OR fullname='IFIP/IEEE International Symposium on Integrated Network Management'; 548 | UPDATE message SET deadline='2019-07-08' WHERE name='IPCCC' OR fullname='International Performance, Computing, and Communications Conference'; 549 | UPDATE message SET deadline='2020-02-15' WHERE name='ISCC' OR fullname='IEEE Symposium on Computers and Communications'; 550 | UPDATE message SET deadline='2020-06-05' WHERE name='LCN' OR fullname='IEEE Conference on Local Computer Networks'; 551 | UPDATE message SET deadline='2019-05-15' WHERE name='MASS' OR fullname='IEEE International Conference on Mobile Adhoc and Sensor Systems'; 552 | UPDATE message SET deadline='2019-08-15' WHERE name='MSN' OR fullname='International Conference on Mobile Ad-hoc and Sensor Networks'; 553 | UPDATE message SET deadline='2019-05-20' WHERE name='MSWiM' OR fullname='International Conference on Modeling, Analysis and Simulation of Wireless and Mobile Systems'; 554 | UPDATE message SET deadline='2020-01-07' WHERE name='Networking' OR fullname='IFIP International Conferences on Networking'; 555 | UPDATE message SET deadline='2020-03-05' WHERE name='WASA' OR fullname='International Conference on Wireless Algorithms, Systems, and Applications'; 556 | UPDATE message SET deadline='2019-10-04' WHERE name='WCNC' OR fullname='IEEE Wireless Communications & Networking Conference'; 557 | UPDATE message SET deadline='2019-10-28' WHERE name='WoWMoM' OR fullname='IEEE International Symposium on a World of Wireless Mobile and Multimedia Networks'; 558 | UPDATE message SET deadline='2020-05-04' WHERE name='CCS' OR fullname='ACM Conferenceon Computer and Communications Security'; 559 | UPDATE message SET deadline='2020-02-11' WHERE name='CRYPTO' OR fullname='International Cryptology Conference'; 560 | UPDATE message SET deadline='2019-09-26' WHERE name='EUROCRYPT' OR fullname='European Cryptology Conference'; 561 | UPDATE message SET deadline='2019-09-01' WHERE name='S&P' OR fullname='IEEE Symposium on Security and Privacy'; 562 | UPDATE message SET deadline='2019-05-15' WHERE name='USENIX Security' OR fullname='Usenix Security Symposium'; 563 | UPDATE message SET deadline='2019-06-08' WHERE name='ACSAC' OR fullname='Annual Computer Security Applications Conference'; 564 | UPDATE message SET deadline='2019-05-14' WHERE name='ASIACRYPT' OR fullname='Annual International Conference on the Theory and Application of Cryptology and Information Security'; 565 | UPDATE message SET deadline='2020-04-15' WHERE name='CHES' OR fullname='Conference on Cryptographic Hardware and Embedded Systems'; 566 | UPDATE message SET deadline='2020-02-07' WHERE name='CSF' OR fullname='IEEE Computer Security Foundations Symposium'; 567 | UPDATE message SET deadline='2019-12-13' WHERE name='DSN' OR fullname='International Conference on Dependable Systems and Networks'; 568 | UPDATE message SET deadline='2020-04-10' WHERE name='ESORICS' OR fullname='European Symposiumon Research in Computer Security'; 569 | UPDATE message SET deadline='2019-11-23' WHERE name='FSE' OR fullname='Fast Software Encryption'; 570 | UPDATE message SET deadline='2016-09-01' WHERE name='FSE' OR fullname='Fast Software Encryption - Issue 2'; 571 | UPDATE message SET deadline='2016-11-23' WHERE name='FSE' OR fullname='Fast Software Encryption - Issue 3'; 572 | UPDATE message SET deadline='2019-09-13' WHERE name='NDSS' OR fullname='Network and Distributed System Security Symposium'; 573 | UPDATE message SET deadline='2019-11-02' WHERE name='PKC' OR fullname='International Workshop on Practice and Theory in Public Key Cryptography'; 574 | UPDATE message SET deadline='2019-04-02' WHERE name='RAID' OR fullname='International Symposium on Research in Attacks, Intrusions, and Defenses'; 575 | UPDATE message SET deadline='2019-04-26' WHERE name='SRDS' OR fullname='IEEE International Symposium on Reliable Distributed Systems'; 576 | UPDATE message SET deadline='2019-05-29' WHERE name='TCC' OR fullname='Theory of Cryptography Conference'; 577 | UPDATE message SET deadline='2015-07-13' WHERE name='TCC' OR fullname='Theory of Cryptography Conference-A'; 578 | UPDATE message SET deadline='2016-05-20' WHERE name='TCC' OR fullname='Theory of Cryptography Conference-B'; 579 | UPDATE message SET deadline='2020-03-01' WHERE name='ACISP' OR fullname='Australasia Conference on Information Security and Privacy'; 580 | UPDATE message SET deadline='2019-09-09' WHERE name='ACNS' OR fullname='International Conference on Applied Cryptography and Network Security'; 581 | UPDATE message SET deadline='2019-12-10' WHERE name='ASIACCS' OR fullname='ACM Asia Conference on Computer and Communications Security'; 582 | UPDATE message SET deadline='2019-04-14' WHERE name='CARDS' OR fullname='EAI International Conference on Cyber Attacks Response and Defense'; 583 | UPDATE message SET deadline='2019-08-02' WHERE name='CT-RSA' OR fullname='RSA Conference, Cryptographers\' Track'; 584 | UPDATE message SET deadline='2019-10-04' WHERE name='DFRWS-EU' OR fullname='Digital Forensic Research Workshop'; 585 | UPDATE message SET deadline='2020-01-24' WHERE name='DFRWS-USA' OR fullname='Digital Forensic Research Workshop'; 586 | UPDATE message SET deadline='2020-02-16' WHERE name='DIMVA' OR fullname='Detection of Intrusions and Malware & Vulnerability Assessment'; 587 | UPDATE message SET deadline='2019-09-20' WHERE name='FC' OR fullname='Financial Cryptography and Data Security'; 588 | UPDATE message SET deadline='2019-06-10' WHERE name='HotSec' OR fullname='USENIX Workshop on Hot Topics in Security'; 589 | UPDATE message SET deadline='2019-09-10' WHERE name='ICICS' OR fullname='International Conference on Information and Communications Security'; 590 | UPDATE message SET deadline='2019-09-15' WHERE name='IFIP WG 11.9' OR fullname='IFIP WG 11.9 International Conference on Digital Forensics'; 591 | UPDATE message SET deadline='2020-02-02' WHERE name='IH&MMSec' OR fullname='ACM Workshop on Information Hiding and Multimedia Security'; 592 | UPDATE message SET deadline='2019-04-05' WHERE name='ISC' OR fullname='Information Security Conference'; 593 | UPDATE message SET deadline='2019-04-12' WHERE name='NSPW' OR fullname='New Security Paradigms Workshop'; 594 | UPDATE message SET deadline='2019-11-01' WHERE name='PAM' OR fullname='Passive and Active Measurement Conference'; 595 | UPDATE message SET deadline='2019-05-31' WHERE name='PETS' OR fullname='Privacy Enhancing Technologies Symposium'; 596 | UPDATE message SET deadline='2016-05-31' WHERE name='PETS' OR fullname='Privacy Enhancing Technologies Symposium - Issue 1'; 597 | UPDATE message SET deadline='2016-08-31' WHERE name='PETS' OR fullname='Privacy Enhancing Technologies Symposium - Issue 2'; 598 | UPDATE message SET deadline='2016-11-30' WHERE name='PETS' OR fullname='Privacy Enhancing Technologies Symposium - Issue 3'; 599 | UPDATE message SET deadline='2017-02-28' WHERE name='PETS' OR fullname='Privacy Enhancing Technologies Symposium - Issue 4'; 600 | UPDATE message SET deadline='2019-05-03' WHERE name='SAC' OR fullname='Selected Areas in Cryptography'; 601 | UPDATE message SET deadline='2020-02-10' WHERE name='SACMAT' OR fullname='ACM Symposium on Access Control Models and Technologies'; 602 | UPDATE message SET deadline='2019-12-01' WHERE name='SEC' OR fullname='IFIP International Information Security and Privacy Conference'; 603 | UPDATE message SET deadline='2020-02-20' WHERE name='SOUPS' OR fullname='Symposium On Usable Privacy and Security'; 604 | UPDATE message SET deadline='2020-05-04' WHERE name='SecureComm' OR fullname='International Conference on Security and Privacy in Communication Networks'; 605 | UPDATE message SET deadline='2019-03-14' WHERE name='TrustCom' OR fullname='IEEE International Conference on Trust, Security and Privacy in Computing and Communications'; 606 | UPDATE message SET deadline='2020-02-28' WHERE name='WiSec' OR fullname='ACM Conference on Security and Privacy in Wireless and Mobile Networks'; 607 | UPDATE message SET deadline='2019-05-13' WHERE name='ASE' OR fullname='International Conference on Automated Software Engineering'; 608 | UPDATE message SET deadline='2020-03-05' WHERE name='ESEC/FSE' OR fullname='ACM Joint European Software Engineering Conference and Symposium on the Foundations of Software Engineering'; 609 | UPDATE message SET deadline='2019-08-23' WHERE name='ICSE' OR fullname='International Conference on Software Engineering'; 610 | UPDATE message SET deadline='2020-01-27' WHERE name='ISSTA' OR fullname='The International Symposium on Software Testing and Analysis'; 611 | UPDATE message SET deadline='2020-04-06' WHERE name='OOPSLA' OR fullname='Conference on Object-Oriented Programming Systems, Languages, and Applications'; 612 | UPDATE message SET deadline='2020-05-12' WHERE name='OSDI' OR fullname='Operating Systems Design and Implementation'; 613 | UPDATE message SET deadline='2019-11-22' WHERE name='PLDI' OR fullname='ACM SIGPLAN conference on Programming Language Design and Implementation'; 614 | UPDATE message SET deadline='2019-07-10' WHERE name='POPL' OR fullname='ACM SIGACT-SIGPLAN Symposium on Principles of Programming Languages'; 615 | UPDATE message SET deadline='2019-04-24' WHERE name='SOSP' OR fullname='ACM Symposium on Operating Systems Principles'; 616 | UPDATE message SET deadline='2019-11-29' WHERE name='CAiSE' OR fullname='International Conference on Advanced Information Systems Engineering'; 617 | UPDATE message SET deadline='2020-04-22' WHERE name='CP' OR fullname='Principles and Practice of Constraint Programming'; 618 | UPDATE message SET deadline='2020-01-10' WHERE name='ECOOP' OR fullname='European Conference on Object-Oriented Programming'; 619 | UPDATE message SET deadline='2020-04-27' WHERE name='ESEM' OR fullname='International Symposium on Empirical Software Engineering and Measurement'; 620 | UPDATE message SET deadline='2019-10-24' WHERE name='ETAPS' OR fullname='European Joint Conferences on Theory and Practice of Software'; 621 | UPDATE message SET deadline='2019-04-11' WHERE name='FM' OR fullname='International Symposium on Formal Methods'; 622 | UPDATE message SET deadline='2019-01-17' WHERE name='HotOS' OR fullname='Workshop on Hot Topics in Operating Systems'; 623 | UPDATE message SET deadline='2020-03-03' WHERE name='ICFP' OR fullname='International Conference on Functional Programming'; 624 | UPDATE message SET deadline='2020-01-24' WHERE name='ICPC' OR fullname='International Conference on Program Comprehension'; 625 | UPDATE message SET deadline='2019-04-05' WHERE name='ICSME' OR fullname='International Conference on Software Maintenance and Evolution'; 626 | UPDATE message SET deadline='2019-05-31' WHERE name='ICSOC' OR fullname='International Conference on Service Oriented Computing'; 627 | UPDATE message SET deadline='2019-12-06' WHERE name='ICWS' OR fullname='International Conference on Web Services'; 628 | UPDATE message SET deadline='2020-05-07' WHERE name='ISSRE' OR fullname='International Symposium on Software Reliability Engineering'; 629 | UPDATE message SET deadline='2020-02-28' WHERE name='LCTES' OR fullname='ACM SIGPLAN/SIGBED Conference on Languages, Compilers, Tools and Theory for Embedded Systems'; 630 | UPDATE message SET deadline='2020-05-08' WHERE name='MODELS' OR fullname='ACM/IEEE International Conference on Model Driven Engineering Languages and Systems'; 631 | UPDATE message SET deadline='2019-05-17' WHERE name='Middleware' OR fullname='ACM/IFIP/USENIX International Middleware Conference'; 632 | UPDATE message SET deadline='2020-02-17' WHERE name='RE' OR fullname='International Requirements Engineering Conference'; 633 | UPDATE message SET deadline='2019-10-18' WHERE name='SANER' OR fullname='IEEE International Conference on Software Analysis, Evolution and Reengineering'; 634 | UPDATE message SET deadline='2019-04-25' WHERE name='SAS' OR fullname='International Static Analysis Symposium'; 635 | UPDATE message SET deadline='2019-10-01' WHERE name='VMCAI' OR fullname='International Conference on Verification, Model Checking, and Abstract Interpretation'; 636 | UPDATE message SET deadline='2019-06-23' WHERE name='APLAS' OR fullname='Asian Symposium on Programming Languages and Systems'; 637 | UPDATE message SET deadline='2019-07-12' WHERE name='APSEC' OR fullname='Asia-Pacific Software Engineering Conference'; 638 | UPDATE message SET deadline='2020-05-03' WHERE name='ATVA' OR fullname='International Symposium on Automated Technology for Verification and Analysis'; 639 | UPDATE message SET deadline='2020-01-20' WHERE name='COMPSAC' OR fullname='IEEE Computer Society International Conference on Computers, Software & Applications'; 640 | UPDATE message SET deadline='2019-12-17' WHERE name='EASE' OR fullname='International Conference on Evaluation and Assessment in Software Engineering'; 641 | UPDATE message SET deadline='2019-05-31' WHERE name='ICECCS' OR fullname='International Conference on Engineering of Complex Computer Systems'; 642 | UPDATE message SET deadline='2019-05-21' WHERE name='ICFEM' OR fullname='International Conference on Formal Engineering Methods'; 643 | UPDATE message SET deadline='2019-02-15' WHERE name='ICSR' OR fullname='International Conference on Software Reuse'; 644 | UPDATE message SET deadline='2019-02-06' WHERE name='ICSSP' OR fullname='International Conference on Software and Systems Process'; 645 | UPDATE message SET deadline='2019-10-14' WHERE name='ICST' OR fullname='The IEEE International Conference on Software Testing, Verification and Validation'; 646 | UPDATE message SET deadline='2020-01-26' WHERE name='ICWE' OR fullname='International Conference on Web Engineering'; 647 | UPDATE message SET deadline='2019-10-10' WHERE name='ISPASS' OR fullname='International Symposium on Performance Analysis of Systems and Software'; 648 | UPDATE message SET deadline='2019-07-17' WHERE name='LOPSTR' OR fullname='International Symposium on Logic-based Program Synthesis and Transformation'; 649 | UPDATE message SET deadline='2020-01-16' WHERE name='MSR' OR fullname='Working Conference on Mining Software Repositories'; 650 | UPDATE message SET deadline='2019-10-18' WHERE name='PEPM' OR fullname='ACM SIGPLAN Symposium on Partial Evaluation and Semantics Based Programming Manipulation'; 651 | UPDATE message SET deadline='2020-03-15' WHERE name='QRS' OR fullname='International Conference on Quality Software'; 652 | UPDATE message SET deadline='2019-11-01' WHERE name='REFSQ : Requirements Engineering' OR fullname='Foundations of Software Quality'; 653 | UPDATE message SET deadline='2019-04-05' WHERE name='SCAM' OR fullname='International Working Conference on Source Code Analysis and Manipulation'; 654 | UPDATE message SET deadline='2020-02-05' WHERE name='SCC' OR fullname='IEEE International Conference on Service Computing'; 655 | UPDATE message SET deadline='2020-03-01' WHERE name='SEKE' OR fullname='International Conference on Software Engineering & Knowledge Engineering'; 656 | UPDATE message SET deadline='2019-04-05' WHERE name='SPIN' OR fullname='International SPIN Symposium on Model Checking of Software'; 657 | UPDATE message SET deadline='2020-01-12' WHERE name='TASE' OR fullname='International Symposium on Theoretical Aspects of Software Engineering'; 658 | UPDATE message SET deadline='2019-12-18' WHERE name='WICSA' OR fullname='IEEE International Conference on Software Architecture'; 659 | UPDATE message SET deadline='2019-06-15' WHERE name='ICDE' OR fullname='International Conference on Data Engineering'; 660 | UPDATE message SET deadline='2020-02-13' WHERE name='KDD' OR fullname='ACM SIGKDD conference on Knowledge Discovery and Data Mining'; 661 | UPDATE message SET deadline='2020-01-22' WHERE name='SIGIR' OR fullname='International ACM SIGIR Conference on Research and Development in Information Retrieval'; 662 | UPDATE message SET deadline='2019-07-16' WHERE name='SIGMOD' OR fullname='ACM Conference on Management of Data'; 663 | UPDATE message SET deadline='2020-03-01' WHERE name='VLDB' OR fullname='International Conference on Very Large Data Bases'; 664 | UPDATE message SET deadline='2019-08-23' WHERE name='CIDR' OR fullname='Biennial Conference on Innovative Data Systems Research'; 665 | UPDATE message SET deadline='2020-05-01' WHERE name='CIKM' OR fullname='Conference on Information and Knowledge Management'; 666 | UPDATE message SET deadline='2019-12-20' WHERE name='DASFAA' OR fullname='International Conference on Database Systems for Advanced Applications'; 667 | UPDATE message SET deadline='2020-03-26' WHERE name='ECML-PKDD' OR fullname='European Conference on Machine Learning and Principles and Practice of Knowledge Discovery'; 668 | UPDATE message SET deadline='2019-10-11' WHERE name='EDBT' OR fullname='International Conference on Extending DB Technology'; 669 | UPDATE message SET deadline='2019-06-05' WHERE name='ICDM' OR fullname='IEEE International Conference on Data Mining'; 670 | UPDATE message SET deadline='2019-09-23' WHERE name='ICDT' OR fullname='International Conference on Database Theory'; 671 | UPDATE message SET deadline='2019-04-10' WHERE name='ISWC' OR fullname='IEEE International Semantic Web Conference'; 672 | UPDATE message SET deadline='2019-12-22' WHERE name='PODS' OR fullname='ACM SIGMOD Conference on Principles of DB Systems'; 673 | UPDATE message SET deadline='2019-10-11' WHERE name='SDM' OR fullname='SIAM International Conference on Data Mining'; 674 | UPDATE message SET deadline='2019-08-16' WHERE name='WSDM' OR fullname='International Conference on Web Search and Data Mining'; 675 | UPDATE message SET deadline='2020-02-16' WHERE name='APWeb' OR fullname='Asia Pacific Web Conference'; 676 | UPDATE message SET deadline='2020-03-16' WHERE name='DEXA' OR fullname='International Conference on Database and Expert Systems Applications'; 677 | UPDATE message SET deadline='2019-10-01' WHERE name='ECIR' OR fullname='European Conference on Information Retrieval'; 678 | UPDATE message SET deadline='2019-03-30' WHERE name='ER' OR fullname='International Conference on Conceptual Modeling'; 679 | UPDATE message SET deadline='2019-12-11' WHERE name='ESWC' OR fullname='Extended Semantic Web Conference'; 680 | UPDATE message SET deadline='2020-01-24' WHERE name='MDM' OR fullname='International Conference on Mobile Data Management'; 681 | UPDATE message SET deadline='2019-11-25' WHERE name='PAKDD' OR fullname='Pacific-Asia Conference on Knowledge Discovery and Data Mining'; 682 | UPDATE message SET deadline='2020-02-24' WHERE name='SSDBM' OR fullname='International Conference on Scientific and Statistical Database Management'; 683 | UPDATE message SET deadline='2019-04-05' WHERE name='SSTD' OR fullname='International Symposium on Spatial and Temporal Databases'; 684 | UPDATE message SET deadline='2020-02-16' WHERE name='WAIM' OR fullname='International Conference on Web-Age Information Management'; 685 | UPDATE message SET deadline='2019-06-15' WHERE name='WISE' OR fullname='Web Information Systems Engineering'; 686 | UPDATE message SET deadline='2018-02-25' WHERE name='WebDB' OR fullname='International Workshop on the Web and Databases'; 687 | UPDATE message SET deadline='2020-01-23' WHERE name='CAV' OR fullname='International Conference on Computer Aided Verification'; 688 | UPDATE message SET deadline='2019-04-05' WHERE name='FOCS' OR fullname='IEEE Symposium on Foundations of Computer Science'; 689 | UPDATE message SET deadline='2020-01-10' WHERE name='LICS' OR fullname='Annual ACM/IEEE Symposium on Logic in Computer Science'; 690 | UPDATE message SET deadline='2019-07-09' WHERE name='SODA' OR fullname='ACM-SIAM Symposium on Discrete Algorithms'; 691 | UPDATE message SET deadline='2019-11-04' WHERE name='STOC' OR fullname='ACM Symposium on Theory of Computing'; 692 | UPDATE message SET deadline='2020-01-23' WHERE name='CADE/IJCAR' OR fullname='Conference on Automated Deduction/The International Joint Conference on Automated Reasoning'; 693 | UPDATE message SET deadline='2020-02-17' WHERE name='CCC' OR fullname='IEEE Conference on Computational Complexity'; 694 | UPDATE message SET deadline='2020-04-22' WHERE name='CONCUR' OR fullname='International Conference on Concurrency Theory'; 695 | UPDATE message SET deadline='2019-04-26' WHERE name='ESA' OR fullname='European Symposium on Algorithms'; 696 | UPDATE message SET deadline='2019-10-23' WHERE name='HSCC : International Conference on Hybrid Systems' OR fullname='Computation and Control'; 697 | UPDATE message SET deadline='2020-02-12' WHERE name='ICALP' OR fullname='International Colloquium on Automata, Languages, and Programming'; 698 | UPDATE message SET deadline='2020-02-22' WHERE name='SAT' OR fullname='International Conference on Theory and Applications of Satisfiability Testing'; 699 | UPDATE message SET deadline='2019-12-04' WHERE name='SoCG' OR fullname='ACM Symposium on Computational Geometry'; 700 | UPDATE message SET deadline='2019-07-04' WHERE name='CSL' OR fullname='Computer Science Logic'; 701 | UPDATE message SET deadline='2020-05-24' WHERE name='DSAA' OR fullname='IEEE International Conference on Data Science and Advanced Analytics'; 702 | UPDATE message SET deadline='2020-04-16' WHERE name='FMCAD' OR fullname='Formal Methods in Computer-Aided Design'; 703 | UPDATE message SET deadline='2019-07-17' WHERE name='FSTTCS' OR fullname='Foundations of Software Technology and Theoretical Computer Science'; 704 | UPDATE message SET deadline='2019-05-12' WHERE name='ICTAC' OR fullname='International Colloquium on Theoretical Aspects of Computing'; 705 | UPDATE message SET deadline='2019-11-29' WHERE name='IPCO' OR fullname='Conference on Integer Programming and Combinatorial Optimization'; 706 | UPDATE message SET deadline='2019-06-30' WHERE name='ISAAC' OR fullname='International Symposium on Algorithms and Computation'; 707 | UPDATE message SET deadline='2019-04-22' WHERE name='MFCS' OR fullname='International Symposium on Mathematical Foundations of Computer Science'; 708 | UPDATE message SET deadline='2020-02-09' WHERE name='RTA/FSCD' OR fullname='International Conference on Formal Structures for Computation and Deduction'; 709 | UPDATE message SET deadline='2019-09-30' WHERE name='STACS' OR fullname='International Symposium on Theoretical Aspects of Computer Science'; 710 | UPDATE message SET deadline='2019-04-01' WHERE name='ACM MM' OR fullname='ACM International Conference on Multimedia'; 711 | UPDATE message SET deadline='2019-03-31' WHERE name='IEEE VIS' OR fullname='IEEE Visualization Conference'; 712 | UPDATE message SET deadline='2019-09-10' WHERE name='IEEE Virtual Reality' OR fullname='IEEE Virtual Reality'; 713 | UPDATE message SET deadline='2020-01-22' WHERE name='SIGGRAPH' OR fullname='ACM SIGGRAPH Annual Conference'; 714 | UPDATE message SET deadline='2019-11-01' WHERE name='DCC' OR fullname='Data Compression Conference'; 715 | UPDATE message SET deadline='2019-10-03' WHERE name='EG' OR fullname='Eurographics'; 716 | UPDATE message SET deadline='2020-04-07' WHERE name='EGSR' OR fullname='Eurographics Symposium on Rendering'; 717 | UPDATE message SET deadline='2019-12-05' WHERE name='EuroVis' OR fullname='Eurographics Conference on Visualization'; 718 | UPDATE message SET deadline='2019-10-21' WHERE name='ICASSP' OR fullname='International Conference on Acoustics, Speech, and Signal Processing'; 719 | UPDATE message SET deadline='2019-11-29' WHERE name='ICME' OR fullname='IEEE International Conference on Multimedia &Expo'; 720 | UPDATE message SET deadline='2020-01-11' WHERE name='ICMR' OR fullname='ACM SIGMM International Conference on Multimedia Retrieval'; 721 | UPDATE message SET deadline='2019-03-22' WHERE name='ISMAR' OR fullname='International Symposium on Mixed and Augmented Reality'; 722 | UPDATE message SET deadline='2019-06-05' WHERE name='PG : Pacific Graphics' OR fullname='The Pacific Conference on Computer Graphics and Applications'; 723 | UPDATE message SET deadline='2020-05-07' WHERE name='SCA' OR fullname='ACM/Eurographics Symposium on Computer Animation'; 724 | UPDATE message SET deadline='2019-04-11' WHERE name='SGP' OR fullname='Eurographics Symposium on Geometry Processing'; 725 | UPDATE message SET deadline='2020-01-20' WHERE name='SPM' OR fullname='Symposium on Solid and Physical Modeling'; 726 | UPDATE message SET deadline='2019-12-13' WHERE name='i3D' OR fullname='ACM Symposium on Interactive 3D Graphics'; 727 | UPDATE message SET deadline='2020-07-31' WHERE name='3DV' OR fullname='International Conference on 3D Vision'; 728 | UPDATE message SET deadline='2019-01-16' WHERE name='CAD/Graphics' OR fullname='International Conference on Computer-Aided Design and Computer Graphics'; 729 | UPDATE message SET deadline='2020-03-02' WHERE name='CASA' OR fullname='Computer Animation and Social Agents'; 730 | UPDATE message SET deadline='2020-04-07' WHERE name='CGI' OR fullname='Computer Graphics International'; 731 | UPDATE message SET deadline='2019-12-20' WHERE name='GMP' OR fullname='Geometric Modeling and Processing'; 732 | UPDATE message SET deadline='2020-01-31' WHERE name='ICIP' OR fullname='International Conference on Image Processing'; 733 | UPDATE message SET deadline='2020-03-30' WHERE name='Interspeech' OR fullname='Conference of the International Speech Communication Association'; 734 | UPDATE message SET deadline='2019-07-12' WHERE name='MMM' OR fullname='International Conference on Multimedia Modeling'; 735 | UPDATE message SET deadline='2018-05-25' WHERE name='PCM' OR fullname='Pacific-Rim Conference on Multimedia'; 736 | UPDATE message SET deadline='2019-10-04' WHERE name='PacificVis' OR fullname='IEEE Pacific Visualization Symposium'; 737 | UPDATE message SET deadline='2019-03-11' WHERE name='SMI' OR fullname='Shape Modeling International'; 738 | UPDATE message SET deadline='2019-07-19' WHERE name='VRST' OR fullname='ACM Symposium on Virtual Reality Software and Technology'; 739 | UPDATE message SET deadline='2019-09-05' WHERE name='AAAI' OR fullname='AAAI Conference on Artificial Intelligence'; 740 | UPDATE message SET deadline='2019-12-09' WHERE name='ACL' OR fullname='Annual Meeting of the Association for Computational Linguistics'; 741 | UPDATE message SET deadline='2019-11-15' WHERE name='CVPR' OR fullname='IEEE Conference on Computer Vision and Pattern Recognition'; 742 | UPDATE message SET deadline='2019-03-01' WHERE name='ICCV' OR fullname='International Conference on Computer Vision'; 743 | UPDATE message SET deadline='2020-02-07' WHERE name='ICML' OR fullname='International Conference on Machine Learning'; 744 | UPDATE message SET deadline='2020-01-21' WHERE name='IJCAI' OR fullname='International Joint Conference on Artificial Intelligence'; 745 | UPDATE message SET deadline='2019-05-23' WHERE name='NIPS' OR fullname='Annual Conference on Neural Information Processing Systems'; 746 | UPDATE message SET deadline='2019-11-15' WHERE name='AAMAS' OR fullname='International Joint Conference on Autonomous Agents and Multi-agent Systems'; 747 | UPDATE message SET deadline='2020-04-08' WHERE name='COLING' OR fullname='International Conference on Computational Linguistics'; 748 | UPDATE message SET deadline='2020-01-31' WHERE name='COLT' OR fullname='Annual Conference on Computational Learning Theory'; 749 | UPDATE message SET deadline='2019-11-15' WHERE name='ECAI' OR fullname='European Conference on Artificial Intelligence'; 750 | UPDATE message SET deadline='2020-03-05' WHERE name='ECCV' OR fullname='European Conference on Computer Vision'; 751 | UPDATE message SET deadline='2019-05-21' WHERE name='EMNLP' OR fullname='Conference on Empirical Methods in Natural Language Processing'; 752 | UPDATE message SET deadline='2019-11-20' WHERE name='ICAPS' OR fullname='International Conference on Automated Planning and Scheduling'; 753 | UPDATE message SET deadline='2020-01-18' WHERE name='ICCBR' OR fullname='International Conference on Case-Based Reasoning'; 754 | UPDATE message SET deadline='2019-09-15' WHERE name='ICRA' OR fullname='IEEE International Conference on Robotics and Automation'; 755 | UPDATE message SET deadline='2020-03-11' WHERE name='KR' OR fullname='International Conference on Principles of Knowledge Representation and Reasoning'; 756 | UPDATE message SET deadline='2020-04-01' WHERE name='PPSN' OR fullname='International Conference on Parallel Problem Solving from Nature'; 757 | UPDATE message SET deadline='2020-02-20' WHERE name='UAI' OR fullname='International Conference on Uncertainty in Artificial Intelligence'; 758 | UPDATE message SET deadline='2020-07-01' WHERE name='ACCV' OR fullname='Asian Conference on Computer Vision'; 759 | UPDATE message SET deadline='2019-07-15' WHERE name='ACML' OR fullname='Asian Conference on Machine Learning'; 760 | UPDATE message SET deadline='2019-10-08' WHERE name='AISTATS' OR fullname='International Conference on Artificial Intelligence and Statistics'; 761 | UPDATE message SET deadline='2019-09-20' WHERE name='ALT' OR fullname='International Conference on Algorithmic Learning Theory'; 762 | UPDATE message SET deadline='2019-04-29' WHERE name='BMVC' OR fullname='British Machine Vision Conference'; 763 | UPDATE message SET deadline='2019-05-31' WHERE name='CoNLL' OR fullname='Conference on Natural Language Learning'; 764 | UPDATE message SET deadline='2019-09-27' WHERE name='FG' OR fullname='International Conference on Automatic Face and Gesture Recognition'; 765 | UPDATE message SET deadline='2020-02-06' WHERE name='GECCO' OR fullname='Genetic and Evolutionary Computation Conference'; 766 | UPDATE message SET deadline='2020-03-15' WHERE name='ICANN' OR fullname='International Conference on Artificial Neural Networks'; 767 | UPDATE message SET deadline='2019-12-09' WHERE name='ICB' OR fullname='International Joint Conference on Biometrics'; 768 | UPDATE message SET deadline='2019-02-15' WHERE name='ICDAR' OR fullname='International Conference on Document Analysis and Recognition'; 769 | UPDATE message SET deadline='2019-06-15' WHERE name='ICONIP' OR fullname='International Conference on Neural Information Processing'; 770 | UPDATE message SET deadline='2020-03-02' WHERE name='ICPR' OR fullname='International Conference on Pattern Recognition'; 771 | UPDATE message SET deadline='2019-07-07' WHERE name='ICTAI' OR fullname='IEEE International Conference on Tools with Artificial Intelligence'; 772 | UPDATE message SET deadline='2018-12-15' WHERE name='IJCNN' OR fullname='International Joint Conference on Neural Networks'; 773 | UPDATE message SET deadline='2019-06-01' WHERE name='ILP' OR fullname='International Conference on Inductive Logic Programming'; 774 | UPDATE message SET deadline='2020-03-01' WHERE name='IROS' OR fullname='IEEE\RSJ International Conference on Intelligent Robots and Systems'; 775 | UPDATE message SET deadline='2020-03-20' WHERE name='KSEM' OR fullname='International Conference on Knowledge Science, Engineering and Management'; 776 | UPDATE message SET deadline='2019-12-09' WHERE name='NAACL' OR fullname='The Annual Conference of the North American Chapter of the Association for Computational Linguistics'; 777 | UPDATE message SET deadline='2018-12-10' WHERE name='NAACL-HLT' OR fullname='Annual Conference of the North American Chapter of the Association for Computational Linguistics'; 778 | UPDATE message SET deadline='2019-05-15' WHERE name='NLPCC' OR fullname='International Conference on Natural Language Processing and Chinese Computing'; 779 | UPDATE message SET deadline='2020-01-21' WHERE name='PRICAI' OR fullname='Pacific Rim International Conference on Artificial Intelligence'; 780 | UPDATE message SET deadline='2019-09-20' WHERE name='CHI' OR fullname='ACM Conference on Human Factors in Computing Systems'; 781 | UPDATE message SET deadline='2020-04-15' WHERE name='CSCW' OR fullname='ACM Conference on Computer Supported Cooperative Work and Social Computing'; 782 | UPDATE message SET deadline='2020-05-15' WHERE name='UbiComp' OR fullname='ACM International Joint Conference on Pervasive and Ubiquitous Computing'; 783 | UPDATE message SET deadline='2020-03-15' WHERE name='ECSCW' OR fullname='European Computer Supported Cooperative Work'; 784 | UPDATE message SET deadline='2019-03-01' WHERE name='GROUP' OR fullname='ACM Conference on Supporting Group Work'; 785 | UPDATE message SET deadline='2019-07-05' WHERE name='ISS' OR fullname='ACM International Conference on Interactive Surfaces and Spaces'; 786 | UPDATE message SET deadline='2019-10-10' WHERE name='IUI' OR fullname='ACM International Conference on Intelligent User Interfaces'; 787 | UPDATE message SET deadline='2020-01-31' WHERE name='MobileHCI' OR fullname='International Conference on Human-Computer Interaction with Mobile Devices and Services'; 788 | UPDATE message SET deadline='2019-09-20' WHERE name='PerCom' OR fullname='IEEE International Conference on Pervasive Computing and Communications'; 789 | UPDATE message SET deadline='2020-04-01' WHERE name='UIST' OR fullname='Annual ACM Symposium on User Interface Software and Technology'; 790 | UPDATE message SET deadline='2020-04-23' WHERE name='ASSETS' OR fullname='International ACM SIGACCESS Conference on Computers and Accessibility'; 791 | UPDATE message SET deadline='2020-01-21' WHERE name='AVI' OR fullname='International Working Conference on Advanced Visual Interfaces'; 792 | UPDATE message SET deadline='2019-10-30' WHERE name='CSCWD' OR fullname='International Conference on Computer Supported Cooperative Work in Design'; 793 | UPDATE message SET deadline='2020-03-31' WHERE name='CollaborateCom' OR fullname='CollaborateCom International Conference on Collaborative Computing'; 794 | UPDATE message SET deadline='2020-07-15' WHERE name='CoopIS' OR fullname='International Conference on Cooperative Information Systems'; 795 | UPDATE message SET deadline='2020-01-31' WHERE name='DIS' OR fullname='ACM conference on Designing Interactive Systems'; 796 | UPDATE message SET deadline='2019-12-20' WHERE name='GI' OR fullname='Graphics Interface Conference'; 797 | UPDATE message SET deadline='2020-05-04' WHERE name='ICMI' OR fullname='International Conference on Multimodal Interaction'; 798 | UPDATE message SET deadline='2020-01-20' WHERE name='IDC' OR fullname='International Conference on Interaction Design & Children'; 799 | UPDATE message SET deadline='2019-01-28' WHERE name='INTERACT' OR fullname='IFIP TC13 Conference on Human-Computer Interaction'; 800 | UPDATE message SET deadline='2020-07-05' WHERE name='MobiQuitous : International Conference on Mobile and Ubiquitous Systems' OR fullname='Computing, Networking and Services'; 801 | UPDATE message SET deadline='2019-03-19' WHERE name='UIC' OR fullname='International Conference on Ubiquitous Intelligence and Computing'; 802 | UPDATE message SET deadline='2019-10-20' WHERE name='WHC' OR fullname='IEEE World Haptics Conference'; 803 | UPDATE message SET deadline='2020-05-28' WHERE name='RTSS' OR fullname='Real-Time Systems Symposium'; 804 | UPDATE message SET deadline='2019-10-14' WHERE name='WWW' OR fullname='International World Wide Web Conferences'; 805 | UPDATE message SET deadline='2019-08-17' WHERE name='BIBM' OR fullname='IEEE International Conference on Bioinformatics and Biomedicine'; 806 | UPDATE message SET deadline='2020-02-03' WHERE name='CogSci' OR fullname='Cognitive Science Society Annual Conference'; 807 | UPDATE message SET deadline='2020-04-10' WHERE name='EMSOFT' OR fullname='International Conference on Embedded Software'; 808 | UPDATE message SET deadline='2020-01-30' WHERE name='ISMB' OR fullname='International Conference on Intelligent Systems for Molecular Biology'; 809 | UPDATE message SET deadline='2019-11-01' WHERE name='RECOMB' OR fullname='International Conference on Research in Computational Molecular Biology'; 810 | UPDATE message SET deadline='2019-03-13' WHERE name='AMIA' OR fullname='American Medical Informatics Association Annual Symposium'; 811 | UPDATE message SET deadline='2019-08-01' WHERE name='APBC' OR fullname='Asia Pacific Bioinformatics Conference'; 812 | UPDATE message SET deadline='2020-08-19' WHERE name='BigData' OR fullname='IEEE International Conference on Big Data'; 813 | UPDATE message SET deadline='2019-12-06' WHERE name='CLOUD' OR fullname='IEEE International Conference on Cloud Computing'; 814 | UPDATE message SET deadline='2019-02-10' WHERE name='COSIT' OR fullname='International Conference on Spatial Information Theory'; 815 | UPDATE message SET deadline='2020-02-09' WHERE name='ISBRA' OR fullname='International Symposium on Bioinformatics Research and Applications'; 816 | UPDATE message SET deadline='2020-04-05' WHERE name='SMC' OR fullname='IEEE International Conference on Systems, Man, and Cybernetics'; 817 | 818 | 819 | 820 | 821 | 822 | 823 | 824 | 825 | 826 | 827 | 828 | 829 | 830 | 831 | 832 | UPDATE message SET deadline='2020-07-25' WHERE name='Journal of Systems Architecture' OR name='Special Issue on Testing and Verification of Non-Functional Aspects of Cyber-Physical Systems: Theories, Methods, and Tools' OR fullname='Journal of Systems Architecture' OR fullname='Special Issue on Testing and Verification of Non-Functional Aspects of Cyber-Physical Systems: Theories, Methods, and Tools'; 833 | UPDATE message SET deadline='2020-03-01' WHERE name='Parallel Computing' OR name='Special Issue on Parallel Distributed Computing, Applications and Technologies (PDCAT19)' OR fullname='Parallel Computing' OR fullname='Special Issue on Parallel Distributed Computing, Applications and Technologies (PDCAT19)'; 834 | UPDATE message SET deadline='2020-01-31' WHERE name='Future Generation Computer Systems' OR name='Special Issue on Co-design of Data and Computation Management in Fog Computing' OR fullname='Future Generation Computer Systems' OR fullname='Special Issue on Co-design of Data and Computation Management in Fog Computing'; 835 | UPDATE message SET deadline='2020-01-30' WHERE name='Future Generation Computer Systems' OR name='Special Issue on Data Science for Smart Healthcare: Methodologies and Applications' OR fullname='Future Generation Computer Systems' OR fullname='Special Issue on Data Science for Smart Healthcare: Methodologies and Applications'; 836 | UPDATE message SET deadline='2020-01-25' WHERE name='Future Generation Computer Systems' OR name='Special Issue on Emerging Topics in Defending Networked Systems' OR fullname='Future Generation Computer Systems' OR fullname='Special Issue on Emerging Topics in Defending Networked Systems'; 837 | UPDATE message SET deadline='2020-01-20' WHERE name='Future Generation Computer Systems' OR name='Special Issue on “Internet of People: Human-driven Artificial Intelligence and Internet for Smarter Hyper-Connected Societies”' OR fullname='Future Generation Computer Systems' OR fullname='Special Issue on “Internet of People: Human-driven Artificial Intelligence and Internet for Smarter Hyper-Connected Societies”'; 838 | UPDATE message SET deadline='2020-02-29' WHERE name='Computer Networks' OR name='Special Issue in Smart Spectrum and Radio Resource Management for Future 5G Networks' OR fullname='Computer Networks' OR fullname='Special Issue in Smart Spectrum and Radio Resource Management for Future 5G Networks'; 839 | UPDATE message SET deadline='2020-04-30' WHERE name='Computer Networks' OR name='Special Issue on Intelligent Green Communication Networks for IoT' OR fullname='Computer Networks' OR fullname='Special Issue on Intelligent Green Communication Networks for IoT'; 840 | UPDATE message SET deadline='2020-06-20' WHERE name='Computer Networks' OR name='Special issue on Recent Advances in AI-based Mobile Multimedia Computing for Data-Smart Processing' OR fullname='Computer Networks' OR fullname='Special issue on Recent Advances in AI-based Mobile Multimedia Computing for Data-Smart Processing'; 841 | UPDATE message SET deadline='2020-01-30' WHERE name='Ad hoc Networks' OR name='Special Issue on Modeling, Analysis and Performance Evaluation of Wireless Ad-Hoc Networks' OR fullname='Ad hoc Networks' OR fullname='Special Issue on Modeling, Analysis and Performance Evaluation of Wireless Ad-Hoc Networks'; 842 | UPDATE message SET deadline='2020-03-30' WHERE name='Computer Communications' OR name='Special Issue on Autonomous Learning-Based Algorithm for Heterogeneous Cellular Networks' OR fullname='Computer Communications' OR fullname='Special Issue on Autonomous Learning-Based Algorithm for Heterogeneous Cellular Networks'; 843 | UPDATE message SET deadline='2020-03-15' WHERE name='Computer Communications' OR name='Special Issue on Intelligent Edge: When Machine Learning Meets Edge Computing' OR fullname='Computer Communications' OR fullname='Special Issue on Intelligent Edge: When Machine Learning Meets Edge Computing'; 844 | UPDATE message SET deadline='2020-04-30' WHERE name='Computer Communications' OR name='Special issue on Intelligent Resource Management in Mobile Edge Computing for IIoT applications' OR fullname='Computer Communications' OR fullname='Special issue on Intelligent Resource Management in Mobile Edge Computing for IIoT applications'; 845 | UPDATE message SET deadline='2020-03-30' WHERE name='Computer Communications' OR name='Special Issue on Internet of Things and Augmented Reality in the age of 5G' OR fullname='Computer Communications' OR fullname='Special Issue on Internet of Things and Augmented Reality in the age of 5G'; 846 | UPDATE message SET deadline='2020-04-01' WHERE name='Computer Communications' OR name='Special Issue on Network Intelligence' OR fullname='Computer Communications' OR fullname='Special Issue on Network Intelligence'; 847 | UPDATE message SET deadline='2020-05-31' WHERE name='Computer Communications' OR name='Special Issue on Optimization of Cross-layer Collaborative Resource Allocation for Mobile Edge Computing, Caching and Communication' OR fullname='Computer Communications' OR fullname='Special Issue on Optimization of Cross-layer Collaborative Resource Allocation for Mobile Edge Computing, Caching and Communication'; 848 | UPDATE message SET deadline='2020-02-28' WHERE name='Computer Communications' OR name='Special Issue on Smart Green Computing for Wireless Sensor Networks' OR fullname='Computer Communications' OR fullname='Special Issue on Smart Green Computing for Wireless Sensor Networks'; 849 | UPDATE message SET deadline='2020-05-08' WHERE name='Security and Communication Networks' OR name='Security Threats to Artificial Intelligence-Driven Wireless Communication Systems' OR fullname='Security and Communication Networks' OR fullname='Security Threats to Artificial Intelligence-Driven Wireless Communication Systems'; 850 | UPDATE message SET deadline='2020-04-20' WHERE name='Information and Software Technology' OR name='Bridging the gap in the engineering of context-aware software systems' OR fullname='Information and Software Technology' OR fullname='Bridging the gap in the engineering of context-aware software systems'; 851 | UPDATE message SET deadline='2020-04-15' WHERE name='Journal of Systems and Software' OR name='Special Issue on New Generation of Bug Fixing' OR fullname='Journal of Systems and Software' OR fullname='Special Issue on New Generation of Bug Fixing'; 852 | UPDATE message SET deadline='2020-11-29' WHERE name='Science of Computer Programming' OR name='Application-oriented aspects of graphs and graph transformation' OR fullname='Science of Computer Programming' OR fullname='Application-oriented aspects of graphs and graph transformation'; 853 | UPDATE message SET deadline='2020-02-29' WHERE name='Science of Computer Programming' OR name='Special issue on “Coordination and Self-Adaptiveness of Software Applications”' OR fullname='Science of Computer Programming' OR fullname='Special issue on “Coordination and Self-Adaptiveness of Software Applications”'; 854 | UPDATE message SET deadline='2020-10-16' WHERE name='Journal of Logical and Algebraic Methods in Programming' OR name='Special issue of JLAMP for the 12th Workshop on Programming Language Approaches to Concurrency and Communication cEntric Software (PLACES) 2020' OR fullname='Journal of Logical and Algebraic Methods in Programming' OR fullname='Special issue of JLAMP for the 12th Workshop on Programming Language Approaches to Concurrency and Communication cEntric Software (PLACES) 2020'; 855 | UPDATE message SET deadline='2020-10-31' WHERE name='Information Processing & Management' OR name='Special Issue on Creative Language Processing' OR fullname='Information Processing & Management' OR fullname='Special Issue on Creative Language Processing'; 856 | UPDATE message SET deadline='2020-01-31' WHERE name='Information Processing & Management' OR name='Special Issue on Dark Side of Online Information Behavior' OR fullname='Information Processing & Management' OR fullname='Special Issue on Dark Side of Online Information Behavior'; 857 | UPDATE message SET deadline='2020-07-01' WHERE name='Information Processing & Management' OR name='Special Issue on: Health informatics in China: Local practices with global implications' OR fullname='Information Processing & Management' OR fullname='Special Issue on: Health informatics in China: Local practices with global implications'; 858 | UPDATE message SET deadline='2020-02-01' WHERE name='Information Processing & Management' OR name='Special issue on: Transformative computing approaches for advanced management solutions and cognitive processing' OR fullname='Information Processing & Management' OR fullname='Special issue on: Transformative computing approaches for advanced management solutions and cognitive processing'; 859 | UPDATE message SET deadline='2020-02-01' WHERE name='Information Processing & Management' OR name='Special issue: TransformativeComp2019' OR fullname='Information Processing & Management' OR fullname='Special issue: TransformativeComp2019'; 860 | UPDATE message SET deadline='2020-05-01' WHERE name='Information Sciences' OR name='Special Issue on Recent Advances in Security and Privacy-Preserving Techniques of Distributed Networked Systems' OR fullname='Information Sciences' OR fullname='Special Issue on Recent Advances in Security and Privacy-Preserving Techniques of Distributed Networked Systems'; 861 | UPDATE message SET deadline='2020-02-15' WHERE name='Information Systems' OR name='Special issue on Conformance Checking in Process Mining' OR fullname='Information Systems' OR fullname='Special issue on Conformance Checking in Process Mining'; 862 | UPDATE message SET deadline='2020-01-24' WHERE name='Journal of Web Semantics' OR name='Special Issue of the JWS on Semantics in the Creative Industries' OR fullname='Journal of Web Semantics' OR fullname='Special Issue of the JWS on Semantics in the Creative Industries'; 863 | UPDATE message SET deadline='2020-04-30' WHERE name='Journal of Computer and System Sciences' OR name='Special Issue on Algorithmic Theory of Dynamic Networks and its Applications' OR fullname='Journal of Computer and System Sciences' OR fullname='Special Issue on Algorithmic Theory of Dynamic Networks and its Applications'; 864 | UPDATE message SET deadline='2020-03-31' WHERE name='Speech Communication' OR name='Special Issue on Forms, Factors and Functions of Phonetic Convergence' OR fullname='Speech Communication' OR fullname='Special Issue on Forms, Factors and Functions of Phonetic Convergence'; 865 | UPDATE message SET deadline='2020-11-30' WHERE name='Speech Communication' OR name='Special issue on Pluricentric Languages in Speech Science and Technology' OR fullname='Speech Communication' OR fullname='Special issue on Pluricentric Languages in Speech Science and Technology'; 866 | UPDATE message SET deadline='2020-02-01' WHERE name='Computers & Graphics' OR name='Special Section on ACM SIGGRAPH Conference on Motion, Interaction and Games 2019' OR fullname='Computers & Graphics' OR fullname='Special Section on ACM SIGGRAPH Conference on Motion, Interaction and Games 2019'; 867 | UPDATE message SET deadline='2020-06-01' WHERE name='Signal Processing: Image Communication' OR name='Special Issue on Explainable AI on Emerging Multimedia Technologies' OR fullname='Signal Processing: Image Communication' OR fullname='Special Issue on Explainable AI on Emerging Multimedia Technologies'; 868 | UPDATE message SET deadline='2020-05-01' WHERE name='Signal Processing: Image Communication' OR name='Special Issue on Visual Information Processing for Underwater Images and Videos: Theories, Algorithms, and Applications' OR fullname='Signal Processing: Image Communication' OR fullname='Special Issue on Visual Information Processing for Underwater Images and Videos: Theories, Algorithms, and Applications'; 869 | UPDATE message SET deadline='2020-03-01' WHERE name='Artificial Intelligence' OR name='Special Issue on Explainable Artificial Intelligence' OR fullname='Artificial Intelligence' OR fullname='Special Issue on Explainable Artificial Intelligence'; 870 | UPDATE message SET deadline='2020-12-30' WHERE name='Pattern Recognition' OR name='Call for paper of a special issue on Modeling and Learning for Matching: Models, Methods and Applications' OR fullname='Pattern Recognition' OR fullname='Call for paper of a special issue on Modeling and Learning for Matching: Models, Methods and Applications'; 871 | UPDATE message SET deadline='2020-06-30' WHERE name='Pattern Recognition' OR name='Special Issue on Graph-based Methods for Large Scale Financial and Business Data Analysis' OR fullname='Pattern Recognition' OR fullname='Special Issue on Graph-based Methods for Large Scale Financial and Business Data Analysis'; 872 | UPDATE message SET deadline='2020-11-15' WHERE name='Pattern Recognition' OR name='Special Issue on Meta-learning for Image/Video Segmentation' OR fullname='Pattern Recognition' OR fullname='Special Issue on Meta-learning for Image/Video Segmentation'; 873 | UPDATE message SET deadline='2020-02-12' WHERE name='Pattern Recognition' OR name='Special issue on Pattern Recognition Methods for Bridging the Vision-Language Gap in Multimodal Data Analysis' OR fullname='Pattern Recognition' OR fullname='Special issue on Pattern Recognition Methods for Bridging the Vision-Language Gap in Multimodal Data Analysis'; 874 | UPDATE message SET deadline='2020-02-01' WHERE name='Computer Speech and Language' OR name='Special Issue on Natural Language Generation' OR fullname='Computer Speech and Language' OR fullname='Special Issue on Natural Language Generation'; 875 | UPDATE message SET deadline='2020-04-15' WHERE name='Fuzzy Sets and Systems' OR name='Special Issue on Fractional Fuzzy Differential Equations' OR fullname='Fuzzy Sets and Systems' OR fullname='Special Issue on Fractional Fuzzy Differential Equations'; 876 | UPDATE message SET deadline='2020-05-31' WHERE name='Image and Vision Computing' OR name='Advances in Domain Adaptation for Computer Vision' OR fullname='Image and Vision Computing' OR fullname='Advances in Domain Adaptation for Computer Vision'; 877 | UPDATE message SET deadline='2020-05-31' WHERE name='Image and Vision Computing' OR name='Deep Learning for Panoramic Vision on Mobile Devices' OR fullname='Image and Vision Computing' OR fullname='Deep Learning for Panoramic Vision on Mobile Devices'; 878 | UPDATE message SET deadline='2020-04-15' WHERE name='Neurocomputing' OR name='Special Issue on Deep Learning with Small Samples' OR fullname='Neurocomputing' OR fullname='Special Issue on Deep Learning with Small Samples'; 879 | UPDATE message SET deadline='2020-02-01' WHERE name='Neurocomputing' OR name='Special Issue on Deep Neural Networks for Precision Medicine' OR fullname='Neurocomputing' OR fullname='Special Issue on Deep Neural Networks for Precision Medicine'; 880 | UPDATE message SET deadline='2020-01-20' WHERE name='Neurocomputing' OR name='Special Issue on Emergent Effects in Stochastic Neural Networks with Application to Learning and Information Processing' OR fullname='Neurocomputing' OR fullname='Special Issue on Emergent Effects in Stochastic Neural Networks with Application to Learning and Information Processing'; 881 | UPDATE message SET deadline='2020-10-31' WHERE name='Pattern Recognition Letters' OR name='Biometric Presentation Attacks: handcrafted features versus deep learning approaches (BioPAth)' OR fullname='Pattern Recognition Letters' OR fullname='Biometric Presentation Attacks: handcrafted features versus deep learning approaches (BioPAth)'; 882 | UPDATE message SET deadline='2020-05-20' WHERE name='Pattern Recognition Letters' OR name='Call for paper: Virtual Special Issue “Biometrics in Smart Cities: Techniques and Applications (BI_SCI)”' OR fullname='Pattern Recognition Letters' OR fullname='Call for paper: Virtual Special Issue “Biometrics in Smart Cities: Techniques and Applications (BI_SCI)”'; 883 | UPDATE message SET deadline='2020-03-31' WHERE name='Pattern Recognition Letters' OR name='Call for papers for Special Issue on "Digital Anastylosis of Frescoes challeNgE" (DAFNE)' OR fullname='Pattern Recognition Letters' OR fullname='Call for papers for Special Issue on "Digital Anastylosis of Frescoes challeNgE" (DAFNE)'; 884 | UPDATE message SET deadline='2020-03-31' WHERE name='Pattern Recognition Letters' OR name='Call for papers for Special Issue on Digital Anastylosis of Frescoes challeNgE (DAFNE)' OR fullname='Pattern Recognition Letters' OR fullname='Call for papers for Special Issue on Digital Anastylosis of Frescoes challeNgE (DAFNE)'; 885 | UPDATE message SET deadline='2020-02-28' WHERE name='Pattern Recognition Letters' OR name='Special Issue on Advances in Graph-based Representations for Pattern Recognition (AGbR4PR)' OR fullname='Pattern Recognition Letters' OR fullname='Special Issue on Advances in Graph-based Representations for Pattern Recognition (AGbR4PR)'; 886 | UPDATE message SET deadline='2020-06-30' WHERE name='Pattern Recognition Letters' OR name='Special Issue on Advances in Human Action, Activity and Gesture Recognition (AHAAGR)' OR fullname='Pattern Recognition Letters' OR fullname='Special Issue on Advances in Human Action, Activity and Gesture Recognition (AHAAGR)'; 887 | UPDATE message SET deadline='2020-06-05' WHERE name='Pattern Recognition Letters' OR name='Special issue on Cross-Media Learning for Visual Question Answering (VQA)' OR fullname='Pattern Recognition Letters' OR fullname='Special issue on Cross-Media Learning for Visual Question Answering (VQA)'; 888 | UPDATE message SET deadline='2020-12-31' WHERE name='Pattern Recognition Letters' OR name='Special Issue on Deep Learning for Precise and Efficient Object Detection' OR fullname='Pattern Recognition Letters' OR fullname='Special Issue on Deep Learning for Precise and Efficient Object Detection'; 889 | UPDATE message SET deadline='2020-01-31' WHERE name='Pattern Recognition Letters' OR name='Special Issue on Deep Multi-source Data Analysis (DMDA)' OR fullname='Pattern Recognition Letters' OR fullname='Special Issue on Deep Multi-source Data Analysis (DMDA)'; 890 | UPDATE message SET deadline='2020-09-30' WHERE name='Pattern Recognition Letters' OR name='Special Issue on Implicit BIOmetric Authentication and Monitoring through Internet of Things' OR fullname='Pattern Recognition Letters' OR fullname='Special Issue on Implicit BIOmetric Authentication and Monitoring through Internet of Things'; 891 | UPDATE message SET deadline='2020-01-31' WHERE name='Pervasive and Mobile Computing' OR name='Special Issue on Blockchain and Smart Contracts for Pervasive Systems' OR fullname='Pervasive and Mobile Computing' OR fullname='Special Issue on Blockchain and Smart Contracts for Pervasive Systems'; 892 | UPDATE message SET deadline='2020-01-31' WHERE name='Pervasive and Mobile Computing' OR name='Special issue on Location Based Services and Applications in the era of Internet of Things' OR fullname='Pervasive and Mobile Computing' OR fullname='Special issue on Location Based Services and Applications in the era of Internet of Things'; 893 | UPDATE message SET deadline='2020-02-15' WHERE name='Journal of Biomedical Informatics' OR name='Call for Papers: Towards Preventive Health Care through Digital Technologies' OR fullname='Journal of Biomedical Informatics' OR fullname='Call for Papers: Towards Preventive Health Care through Digital Technologies'; 894 | 895 | 896 | 897 | 898 | 899 | 900 | 901 | 902 | 903 | 904 | 905 | 906 | 907 | 908 | 909 | 910 | 911 | 912 | 913 | 914 | 915 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # 清华大学计算机学科推荐学术会议和期刊列表 (TH-CPL) 2 | 3 | 早期手动整理的,年久失修,完整列表pdf可参考 [TH-CPL.pdf (tsinghua.edu.cn)](https://numbda.cs.tsinghua.edu.cn/%7Eyuwj/TH-CPL.pdf) 4 | 5 | 各个会议的deadline可参考 https://ccfddl.github.io/ 和 https://ccfddl.top/ 6 | 7 | ## 分类类别 8 | 9 | 1. [高性能计算](#高性能计算) 10 | 2. [计算机网络](#计算机网络) 11 | 3. [网络与信息安全](#网络与信息安全) 12 | 4. [理论计算机科学](#理论计算机科学) 13 | 5. [系统软件与软件工程](#系统软件与软件工程) 14 | 6. [数据库与数据挖掘](#数据库与数据挖掘) 15 | 7. [人工智能与模式识别](#人工智能与模式识别) 16 | 8. [计算机图形学与多媒体](#计算机图形学与多媒体) 17 | 9. [人机交互与普适计算](#人机交互与普适计算) 18 | 10. [综合与交叉](#综合与交叉) 19 | 20 | 21 | 22 | 23 | ## 高性能计算 24 | 名称|全称|截稿时间|结果时间|篇幅|官网 25 | -|-|-|-|-|- 26 | A类期刊| | | | | 27 | TOCS|ACM Transactions on Computer Systems|-|-|-|- 28 | TPDS|IEEE Transactions on Parallel and Distributed Systems|-|-|-|- 29 | TC|IEEE Transactions on Computers|-|-|-|- 30 | TCAD|IEEE Transactions On Computer-Aided Design Of Integrated Circuits And Systems|-|-|-|- 31 | TOS|ACM Transactions on Storage|-|-|-|- 32 | B类期刊| | | | | 33 | TAAS|ACM Transactions on Autonomous and Adaptive Systems|-|-|-|- 34 | JPDC|Journal Of Parallel and Distributed Computing|-|-|-|- 35 | TVLSI|IEEE Transactions on Very Large Scale Integration (VLSI) Systems|-|-|-|- 36 | TACO|ACM Transactions on Architecture and Code Optimization|-|-|-|- 37 | PARCO|Parallel Computing|2020-03-01|-|-|- 38 | TCC|IEEE Transactions on Cloud Computing|2016-05-20|-|-|- 39 | JETC|ACM Journal on Emerging Technologies in Computing Systems|-|-|-|- 40 | -|Cluster Computing|2020-05-10|-|-|- 41 | A类会议| | | | | 42 | ISCA|International Symposium on Computer Architecture|2019-11-26|-|-|- 43 | FAST|USENIX Conference on File and Storage Technologies|2019-09-26|2019-12-11|长文11页,短文6页|[https://www.usenix.org/conference/fast20](https://www.usenix.org/conference/fast20) 44 | ASPLOS|International Conference on Architectural Support for Programming Languages and Operating Systems|2019-08-16|-|-|- 45 | EuroSys|European Conference on Computer Systems|2019-11-04|2020-02-15|12页正文|[https://www.eurosys2020.org/](https://www.eurosys2020.org/) 46 | HPCA|International Symposium on High-Performance Computer Architecture|2019-08-06|-|-|- 47 | SIGMETRICS|International Conference on Measurement and Modeling Of Computer Systems|2020-02-03|2019-12-16|12页正文|[https://www.sigmetrics.org/sigmetrics2020/](https://www.sigmetrics.org/sigmetrics2020/) 48 | FPGA|ACM/SIGDA International Symposium on Field-Programmable Gate Arrays|2019-09-09|-|-|- 49 | USENIX ATC|USENIX Annul Technical Conference|2020-01-15|2020-04-05|长文11页,短文5页|[https://www.usenix.org/conference/atc20](https://www.usenix.org/conference/atc20) 50 | MICRO|IEEE/ACM International Symposium on Microarchitecture|2019-04-05|-|-|- 51 | SC|International Conference for High Performance Computing, Networking, Storage, and Analysis|2020-04-08|-|-|- 52 | PPoPP|ACM SIGPLAN Symposium on Principles & Practice Of Parallel Programming|2019-08-06|-|-|- 53 | DAC|Design Automation Conference|2019-11-27|-|-|- 54 | B类会议| | | | | 55 | HPDC|International Symposium on High Performance Distributed Computing|2020-01-23|-|-|- 56 | SoCC|ACM Symposium on Cloud Computing|2019-06-10|-|-|[https://www.ieee-socc.org/](https://www.ieee-socc.org/) 57 | RTAS|Real-Time and Embedded Technology and Applications Symposium|2019-10-23|-|-|- 58 | MSST|Mass Storage Systems and Technologies|2019-01-07|-|-|- 59 | CGO|ACM/IEEE International Symposium on Code Generation and Optimization|2019-09-06|-|-|- 60 | PACT|International Conference on Parallel Architectures and Compilation Techniques|2019-04-15|-|-|- 61 | CODES+ISSS|International Conference on Hardware/Software Co-design and System Synthesis|2020-04-10|-|-|- 62 | PODC|ACM Symposium on Principles Of Distributed Computing|2020-02-17|-|-|- 63 | VEE|International Conference on Virtual Execution Environments|2019-12-06|-|-|- 64 | IPDPS|International Parallel & Distributed Processing Symposium|2019-10-14|-|-|- 65 | ICS|International Conference on Supercomputing|2020-01-31|-|-|- 66 | DATE|Design, Automation & Test in Europe Conference|2019-09-08|-|-|- 67 | SPAA|ACM Symposium on Parallelism in Algorithms and Architectures|2020-02-15|-|-|- 68 | Performance|International Symposium on Computer Performance, Modeling, Measurements and Evaluation|2019-02-18|-|-|- 69 | ICDCS|International Conference on Distributed Computing Systems|2020-01-13|2020-03-14|10页全文|[http://icdcs2020.sg/](http://icdcs2020.sg/) 70 | ICCAD|International Conference on Computer-Aided Design|2019-04-08|-|-|- 71 | CCGRID|IEEE/ACM International Symposium on Cluster, Cloud and Grid Computing|2019-12-10|-|-|- 72 | HOT CHIPS|Hot Chips: A Symposium on High Performance Chips|-|-|-|- 73 | CLUSTER|IEEE International Conference on Cluster Computing|2020-05-10|-|-|- 74 | ASP-DAC|Asia and South Pacific Design Automation Conference|2019-07-05|-|-|- 75 | ISLPED|International Symposium on LOW Power Electronics and Design|2020-03-09|-|-|- 76 | -|IEEE International Conference on Cloud Computing|2019-12-06|-|-|- 77 | RTSS|Real-Time Systems Symposium|2020-05-28|-|-|- 78 | ICCD|International Conference on Computer Design|2019-06-28|-|-|- 79 | ISCAS|International Symposium on Circuits and Systems|2019-10-20|-|-|- 80 | ISPD|International Symposium on Physical Design|2019-10-07|-|-|- 81 | ICPP|International Conference on Parallel Processing|2020-03-17|2020-05-19|10页全文|[https://jnamaral.github.io/icpp20/](https://jnamaral.github.io/icpp20/) 82 | IEDM|IEEE International Electron Devices Meeting|-|-|-|- 83 | ISSCC|International Solid-State Circuits Conference|-|-|-|- 84 | ## 计算机网络 85 | 名称|全称|截稿时间|结果时间|篇幅|官网 86 | -|-|-|-|-|- 87 | A类期刊| | | | | 88 | JSAC|IEEE Journal of Selected Areas in Communications|-|-|-|[https://www.comsoc.org/publications/journals/ieee-jsac](https://www.comsoc.org/publications/journal 89 | TMC|IEEE Transactions on Mobile Computing|-|-|-|[https://www.computer.org/csdl/journals/tm](https://www.computer.org/csdl/journals/tm) 90 | TON|IEEE/ACM Transactions on Networking|-|-|-|[https://ton.lids.mit.edu/](https://ton.lids.mit.edu/) 91 | TCOM|IEEE Transactions on Communications|-|-|-|[https://mc.manuscriptcentral.com/tcom](https://mc.manuscriptcentral.com/tcom) 92 | B类期刊| | | | | 93 | TWC|IEEE Transactions on Wireless Communications|-|-|-|- 94 | -|Wireless Networks|-|-|-|- 95 | TOSN|ACM Transactions on Sensor Networks|-|-|-|- 96 | -|Journal of Network and Computer Applications|-|-|-|- 97 | CN|Computer Networks|2020-06-20|-|-|- 98 | -|Ad hoc Networks|2020-01-30|-|-|- 99 | TNSM|IEEE Transactions on Network and Service Management|-|-|-|- 100 | CC|Computer Communications|2020-02-28|-|-|- 101 | MONET|Mobile Networks & Applications|-|-|-|- 102 | TOMCCAP|ACM Transactions on Multimedia Computing, Communications and Applications|-|-|-|- 103 | TOIT|ACM Transactions on Internet Technology|-|-|-|- 104 | TVT|IEEE Transactions on Vehicular Technology|-|-|-|- 105 | -|IEEE Transactions on Aerospace and Electronic Systems|-|-|-|- 106 | -|IEEE Internet of Things Journal|-|-|-|- 107 | -|通信学报|-|-|-|- 108 | A类会议| | | | | 109 | SIGCOMM|ACM International Conference on the applications, technologies, architectures, and protocols for com|2020-02-07|-|-|- 110 | NSDI|Symposium on Network System Design and Implementation|2019-09-19|2019-12-13|12页正文|[https://www.usenix.org/conference/nsdi20](https://www.usenix.org/conference/nsdi20) 111 | MOBICOM|ACM International Conference on Mobile Computing and Networking|2020-03-11|2019-10-23|12页正文|[https://sigmobile.org/mobicom/2020/](https://sigmobile.org/mobicom/2020/) 112 | MobiSys|International Conference on Mobile Systems, Applications, and Services|2019-12-12|-|-|[https://sigmobile.org/mobisys/2020/](https://sigmobile.org/mobisys/2020/) 113 | IMC|Internet Measurement Conference|2019-05-10|-|-|- 114 | IPSN|International Conference on Information Processing in Sensor Networks|2019-10-23|2020-01-10|全文12页|[https://ipsn.acm.org/2020/](https://ipsn.acm.org/2020/) 115 | SenSys|ACM Conference on Embedded Networked Sensor Systems|2019-04-12|-|-|- 116 | INFOCOM|IEEE International Conference on Computer Communications|2019-07-31|2019-12-14|9页正文1页引文|[https://infocom2020.ieee-infocom.org/](https://infocom2020.ieee-infocom.org/) 117 | CoNEXT|ACM International Conference on Emerging Networking Experiments and Technologies|2019-06-26|-|-|- 118 | ICNP|International Conference on Network Protocols|2019-05-31|-|-|- 119 | B类会议| | | | | 120 | MobiHoc|International Symposium on Mobile Ad Hoc Networking and Computing|2019-12-06|2020-02-17|全文10页|[https://www.sigmobile.org/mobihoc/2020/](https://www.sigmobile.org/mobihoc/2020/) 121 | HotNets|The Workshop on Hot Topics in Networks|2019-06-28|-|-|- 122 | Globecom|IEEE Global Communications Conference|2019-04-01|-|-|- 123 | ICC|IEEE International Conference on Communications|2019-10-14|2020-01-27|6页正文1页附录|[https://icc2020.ieee-icc.org/](https://icc2020.ieee-icc.org/) 124 | NOSSDAV|International Workshop on Network and Operating System Support for Digital Audio and Video|2019-02-24|-|-|- 125 | SECON|IEEE Communications Society Conference on Sensor and Ad Hoc Communications and Networks|2020-01-12|-|-|- 126 | Networking|IFIP International Conferences on Networking|2020-01-07|2020-04-01|9页全文|[https://networking.ifip.org/2020/](https://networking.ifip.org/2020/) 127 | WoWMoM|IEEE International Symposium on a World of Wireless, Mobile and Multimedia Networks|2019-10-28|-|-|- 128 | WCNC|IEEE Wireless Communications & Networking Conference|2019-10-04|2019-12-31|8页全文|[https://wcnc2020.ieee-wcnc.org/](https://wcnc2020.ieee-wcnc.org/) 129 | ANCS|Architectures for Networking and Communications Systems|2019-07-15|-|-|- 130 | IWQoS|International Workshop on Quality of Service|2019-03-01|-|-|- 131 | WiOpt|The International Symposium on Modeling and Optimization in Mobile, Ad Hoc, and Wireless Networks|-|-|-|[http://wi-opt.org/](http://wi-opt.org/) 132 | ICN|ACM Conference on Information Centric Networking|-|-|-|[http://www.icn2020.org/information-centric-networking/](http://www.icn2020.org/information-centric- 133 | CNSM|International Conference on Network and Service Management|-|-|-|- 134 | ## 网络与信息安全 135 | 名称|全称|截稿时间|结果时间|篇幅|官网 136 | -|-|-|-|-|- 137 | A类期刊| | | | | 138 | TIFS|IEEE Transactions on Information Forensics and Security|-|-|-|- 139 | -|Journal of Cryptology|-|-|-|- 140 | TDSC|IEEE Transactions on Dependable and Secure Computing|-|-|-|- 141 | B类期刊| | | | | 142 | -|Computers & Security|-|-|-|- 143 | JCS|Journal of Computer Security|-|-|-|- 144 | TOPS|ACM Transactions on Privacy and Security|-|-|-|- 145 | -|密码学报|-|-|-|- 146 | A类会议| | | | | 147 | S&P|IEEE Symposium on Security and Privacy|2019-09-01|-|-|- 148 | NDSS|ISOC Network and Distributed System Security Symposium|2019-09-13|-|-|- 149 | USENIX Security|Usenix Security Symposium|2019-05-15|2020-02-01、2020-05-01|13页正文,录用后改18页|[https://www.usenix.org/conference/usenixsecurity20](https://www.usenix.org/conference/usenixsecurit 150 | CCS|ACM Conference on Computer and Communications Security|2020-05-04|-|-|- 151 | EUROCRYPT|European Cryptology Conference|2019-09-26|-|-|- 152 | CRYPTO|International Cryptology Conference|2020-02-11|-|-|- 153 | CHES|International Conference on Cryptographic Hardware and Embedded Systems|2020-04-15|-|-|- 154 | ASIACRYPT|International Conference on the Theory and Application of Cryptology and Information Security|2019-05-14|-|-|- 155 | B类会议| | | | | 156 | SOUPS|Symposium On Usable Privacy and Security|2020-02-20|-|-|- 157 | FC|Financial Cryptography and Data Security|2019-09-20|-|-|- 158 | PETS|Privacy Enhancing Technologies Symposium|2017-02-28|-|-|- 159 | TCC|Theory of Cryptography Conference|2016-05-20|-|-|- 160 | PKC|International Workshop on Practice and Theory in Public Key Cryptography|2019-11-02|-|-|- 161 | DIMVA|Detection of Intrusions and Malware & Vulnerability Assessment|2020-02-16|-|-|- 162 | CSFW|IEEE Computer Security Foundations Workshop|-|-|-|- 163 | ESE|Fast Software Encryption|2019-11-23|-|-|- 164 | ESORICS|European Symposium on Research in Computer Security|2020-04-10|-|-|- 165 | DSN|The International Conference on Dependable Systems and Networks|2019-12-13|-|-|- 166 | RAID|International Symposium on Recent Advances in Intrusion Detection|2019-04-02|-|-|- 167 | IM|IFIP/IEEE International Symposium on Integrated Network Management|2018-08-18|-|-|- 168 | CT-RSA|Cryptographer's Track at RSA Conference|2019-08-02|-|-|- 169 | ACSAC|Annual Computer Security Applications Conference|2019-06-08|-|-|- 170 | PAM|Passive and Active Network Measurement Conference|2019-11-01|-|-|- 171 | SAC|Selected Areas in Cryptography|2019-05-03|-|-|- 172 | AsiaCCS|Asia Conference on Computer and Communications Security|-|-|-|- 173 | WiSec|ACM Conference on Security and Privacy in Wireless and Mobile Networks|2020-02-28|-|-|- 174 | ACNS|Applied Cryptography and Network Security|2019-09-09|-|-|- 175 | IH&MMSec|ACM Workshop on Information Hiding and Multimedia Security|2020-02-02|-|-|- 176 | SEC|IFIP International Information Security Conference|2019-12-01|-|-|- 177 | NOMS|IEEE/IFIP Network Operations and Management Symposium|-|-|-|- 178 | ## 理论计算机科学 179 | 名称|全称|截稿时间|结果时间|篇幅|官网 180 | -|-|-|-|-|- 181 | A类期刊| | | | | 182 | SICOMP|SIAM Journal on Computing|-|-|-|- 183 | TIT|IEEE Transactions on Information Theory|-|-|-|- 184 | TALG|ACM Transactions on Algorithms|-|-|-|- 185 | IANDC|Information and Computation|-|-|-|- 186 | B类期刊| | | | | 187 | TOMS|ACM Transactions on Mathematical Software|-|-|-|- 188 | JCSS|Journal Of Computer and System Sciences|-|-|-|- 189 | FGCS|Future Generation Computer Systems|-|-|-|- 190 | Algorithmica|Algorithmica|-|-|-|- 191 | CC|Computational complexity|-|-|-|- 192 | INFORMS|INFORMS Journal on Computing|-|-|-|- 193 | TOCL|ACM Transactions on Computational Logic|-|-|-|- 194 | JGC|Journal Of Grid Computing|-|-|-|- 195 | FMSD|Formal Methods in System Design|-|-|-|- 196 | JGO|Journal Of Global Optimization|-|-|-|- 197 | JSC|Journal Of Symbolic Computation|-|-|-|- 198 | FAC|Formal Aspects Of Computing|-|-|-|- 199 | TCS|Theoretical Computer Science|-|-|-|- 200 | A类会议| | | | | 201 | STOC|ACM Symposium on the Theory of Computing|2019-11-04|-|-|- 202 | FOCS|IEEE Annual Symposium on Foundations of Computer Science|2019-04-05|-|-|- 203 | SODA|ACM-SIAM Symposium on Discrete Algorithms|2019-07-09|-|-|- 204 | CAV|Computer Aided Verification|2020-01-23|-|-|- 205 | UCS|IEEE Symposium on Logic in Computer Science|-|-|-|- 206 | CCC|IEEE Conference on Computational Complexity|2020-02-17|-|-|- 207 | ICALP|International Colloquium on Automata, Languages and Programming|2020-02-12|-|-|- 208 | B类会议| | | | | 209 | SAT|Theory and Applications of Satisfiability Testing|2020-02-22|-|-|- 210 | CADE/IJCAR|International Conference on Automated Deduction/International Joint Conference on Automated Reasoning|2020-01-23|-|-|- 211 | SoCG|ACM Symposium on Computational Geometry|2019-12-04|-|-|- 212 | CONCUR|International Conference on Concurrency Theory|2020-04-22|-|-|- 213 | STACS|Symposium on Theoretical Aspects of Computer Science|2019-09-30|-|-|- 214 | ESA|European Symposium on Algorithms|2019-04-26|-|-|- 215 | CSL|Computer Science Logic|2019-07-04|-|-|- 216 | FMCAD|Formal Methods in Computer-Aided Design|2020-04-16|-|-|- 217 | ITCS/ICS|Innovations in Theoretical Computer Science|-|-|-|- 218 | SWAT/WADS|Scandinavian Symposium and Workshops on Algorithm Theory/ the Algorithms and Data Structures Symposium|-|-|-|- 219 | ISIT|IEEE International Symposium on Information Theory|-|-|-|- 220 | ## 系统软件与软件工程 221 | 名称|全称|截稿时间|结果时间|篇幅|官网 222 | -|-|-|-|-|- 223 | A类期刊| | | | | 224 | TSE|IEEE Transactions on Software Engineering|-|-|-|- 225 | TOSEM|ACM Transactions on Software Engineering and Methodology|-|-|-|- 226 | TOPLAS|ACM Transactions on Programming Languages & Systems|-|-|-|- 227 | B类期刊| | | | | 228 | TSC|IEEE Transactions on Service Computing|-|-|-|- 229 | IST|Information and Software Technology|2020-04-20|-|-|- 230 | ESE|Empirical Software Engineering|-|-|-|- 231 | SOSyM|Software and System Modeling|-|-|-|- 232 | RE|Requirements Engineering|2020-02-17|-|-|- 233 | JSS|Journal of Systems and Software|2020-04-15|-|-|- 234 | ASE|Automated Software Engineering|2019-05-13|-|-|- 235 | SCP|Science Of Computer Programming|-|-|-|- 236 | STTT|International Journal on Software Tools for Technology Transfer|-|-|-|- 237 | STVR|Software Testing, Verification and Reliability|-|-|-|- 238 | SPE|Software: Practice and Experience|-|-|-|- 239 | -|软 件 学 报|-|-|-|- 240 | A类会议| | | | | 241 | OSDI|USENIX Symposium on Operating Systems Design and implementations|2020-05-12|-|-|[https://www.usenix.org/conference/osdi20](https://www.usenix.org/conference/osdi20) 242 | ICSE|International Conference on Software Engineering|2019-08-23|-|-|- 243 | SOSP|ACM Symposium on Operating Systems Principles|2019-04-24|-|-|- 244 | POPL|ACM SIGPLAN-SIGACT Symposium on Principles Of Programming Languages|2019-07-10|-|-|- 245 | PLDI|ACM SIGPLAN Conference on Programming Language Design & Implementation|2019-11-22|-|-|- 246 | FSE/ESEC|ACM SIGSOFT Symposium on the Foundation Of Software Engineering/ European Software Engineering Conference|-|-|-|- 247 | ISSTA|International Symposium on Software Testing and Analysis|2020-01-27|-|-|- 248 | OOPSLA|Conference on Object-Oriented Programming Systems, Languages, and Applications|2020-04-06|-|-|- 249 | ASE|International Conference on Automated Software Engineering|2019-05-13|-|-|- 250 | B类会议| | | | | 251 | MSR|Mining Software Repositories|2020-01-16|-|-|- 252 | SANER|International Conference on Software Analysis, Evolution, and Reengineering|2019-10-18|-|-|- 253 | Middleware|International Middleware Conference|2019-05-17|-|-|[http://middleware-conference.org/](http://middleware-conference.org/) 254 | EASE|Evaluation and Assessment in Software Engineering|2019-12-17|-|-|- 255 | ICPC|IEEE International Conference on Program Comprehension|2020-01-24|-|-|- 256 | ICSME|International Conference on Software Maintenance and Evolution|2019-04-05|-|-|- 257 | ISPASS|IEEE International Symposium on Performance Analysis Of Systems and Software|2019-10-10|-|-|- 258 | ECOOP|European Conference on Object Oriented Programming|2020-01-10|-|-|- 259 | ICST|IEEE International Conference 0 n Software Testing, Verification and Validation|2019-10-14|-|-|- 260 | ICFP|International Conference on Function Programming|2020-03-03|-|-|- 261 | RE|IEEE International Requirement Engineering Conference|2020-02-17|-|-|- 262 | CAiSE|International Conference on Advanced Information Systems Engineering|2019-11-29|-|-|- 263 | HotOS|USENIX Workshop on Hot Topics in Operating Systems|2019-01-17|-|-|- 264 | ETAPS|European Joint Conferences on Theory and Practice Of Software|2019-10-24|-|-|- 265 | VMCAI|International Conference on Verification, Model Checking, and Abstract Interpretation|2019-10-01|-|-|- 266 | ISSRE|International Symposium on Software Reliability Engineering|2020-05-07|-|-|- 267 | MoDELS|International Conference on Model Driven Engineering Languages and Systems|-|-|-|- 268 | ESEM|International Symposium on Empirical Software Engineering and Measurement|2020-04-27|-|-|- 269 | FM|International Symposium on Formal Methods|2019-04-11|-|-|- 270 | EMSOFT|International Conference on Embedded Software|2020-04-10|-|-|- 271 | SCC|International Conference on Service Computing|2020-02-05|-|-|- 272 | ICWS|International Conference on Web Services (Research Track)|2019-12-06|-|-|- 273 | CP|International Conference on Principles and Practice of Constraint Programming|2020-04-22|-|-|- 274 | ATVA|International Symposium on Automated Technology for Verification and Analysis|2020-05-03|-|-|- 275 | ## 数据库与数据挖掘 276 | 名称|全称|截稿时间|结果时间|篇幅|官网 277 | -|-|-|-|-|- 278 | A类期刊| | | | | 279 | TKDE|IEEE Transactions on Knowledge and Data Engineering|-|-|-|- 280 | VLDBJ|The VLDB Journal|-|-|-|- 281 | TODS|ACM Transactions on Database Systems|-|-|-|- 282 | TOIS|ACM Transactions on Information Systems|-|-|-|- 283 | B类期刊| | | | | 284 | I&M|Information and Management|-|-|-|- 285 | EJIS|European Journal of Information Systems|-|-|-|- 286 | IJGIS|International Journal of Geographical Information Science|-|-|-|- 287 | J. Strategic Inf. Sys.|Journal of Strategic Information Systems|-|-|-|- 288 | JASIST|Journal of the American Society for Information Science and Technology|-|-|-|- 289 | IPM|Information Processing and Management|-|-|-|- 290 | IS|Information Systems|2020-02-15|-|-|- 291 | JWS|Journal of Web Semantics|2020-01-24|-|-|- 292 | DMKD|Data Mining and Knowledge Discovery|-|-|-|- 293 | KAIS|Knowledge and Information Systems|-|-|-|- 294 | TKDD|ACM Transactions on Knowledge Discovery from Data|-|-|-|- 295 | AEI|Advanced Engineering Informatics|-|-|-|- 296 | IJIS|International Journal of Intelligent Systems|-|-|-|- 297 | TWEB|ACM Transactions on the Web|-|-|-|- 298 | -|Information Sciences|2020-05-01|-|-|- 299 | -|GeoInformatica|-|-|-|- 300 | DKE|Data and Knowledge Engineering|-|-|-|- 301 | A类会议| | | | | 302 | SIGMOD|ACM Conference on Management Of Data|2019-07-16|2019-12-10|正文14页|[https://sigmod2020.org/](https://sigmod2020.org/) 303 | SIGKDD|ACM Knowledge Discovery and Data Mining|-|-|-|- 304 | SIGIR|International Conference on Research on Development in Information Retrieval|2020-01-22|2020-04-20|短文4,长文10页|[https://sigir.org/sigir2020/](https://sigir.org/sigir2020/) 305 | WSDM|ACM International Conference on Web Search and Data Mining|2019-08-16|-|-|- 306 | VLDB|International Conference on Very Large Data Bases|2020-03-01|-|-|- 307 | ICDE|IEEE International Conference on Data Engineering|2019-06-15|-|-|- 308 | PODS|ACM Symposium on Principles Of Database Systems|2019-12-22|-|-|- 309 | B类会议| | | | | 310 | ISWC|IEEE International Semantic Web Conference|2019-04-10|-|-|- 311 | CIKM|ACM International Conference on Information and Knowledge Management|2020-05-01|-|-|- 312 | SDM|SIAM International Conference on Data Mining|2019-10-11|-|-|- 313 | ICDT|International Conference on Database Theory|2019-09-23|-|-|- 314 | ICDM|International Conference on Data Mining|2019-06-05|-|-|- 315 | ECIR|European Conference on IR Research|2019-10-01|-|-|- 316 | EDBT|International Conference on Extending Database Technology|2019-10-11|-|-|- 317 | CIDR|International Conference on Innovative Data Systems Research|2019-08-23|-|-|- 318 | DASFAA|Database Systems for Advanced Applications|2019-12-20|-|-|- 319 | ## 人工智能与模式识别 320 | 名称|全称|截稿时间|结果时间|篇幅|官网 321 | -|-|-|-|-|- 322 | A类期刊| | | | | 323 | TPAMI|IEEE Trans on Pattern Analysis and Machine Intelligence|-|-|-|- 324 | IJCV|International Journal of Computer Vision|-|-|-|- 325 | JMLR|Journal of Machine Learning Research|-|-|-|- 326 | TR|IEEE Transactions on Robotics|-|-|-|- 327 | Al|Artificial Intelligence|2020-03-01|-|-|- 328 | TASLP|IEEE Transactions on Audio Speech, and Language Processing|-|-|-|- 329 | B类期刊| | | | | 330 | TEC|IEEE Transactions on Evolutionary Computation|-|-|-|- 331 | TNNLS|IEEE Transactions on Neural Networks and learning systems|-|-|-|- 332 | -|IEEE Transactions on Cybernetics|-|-|-|- 333 | TFS|IEEE Transactions on Fuzzy Systems|-|-|-|- 334 | PR|Pattern Recognition|-|-|-|- 335 | TAC|IEEE Transactions on Affective Computing|-|-|-|- 336 | JBI|Journal Of Biomedical Informatics|-|-|-|- 337 | -|Neural Networks|-|-|-|- 338 | -|KNOWLEDGE-BASED SYSTEMS|-|-|-|- 339 | Expert Syst. Appl.|Expert Systems with Applications|-|-|-|- 340 | PRL|Pattern Recognition Letters|-|-|-|- 341 | JAIR|Journal Of Artificial Intelligence Research|-|-|-|- 342 | CVIU|Computer Vision and Image Understanding|-|-|-|- 343 | EAAI|Engineering Applications Of Artificial Intelligence|-|-|-|- 344 | -|International Journal Of Neural Systems|-|-|-|- 345 | -|Neurocomputing|-|-|-|- 346 | -|Evolutionary Computation|-|-|-|- 347 | -|Computational Linguistics|-|-|-|- 348 | -|Machine Learning|-|-|-|- 349 | AIM|Artificial Intelligence in Medicine|-|-|-|- 350 | -|Image and Vision Computing|-|-|-|- 351 | -|Computer Speech and Language|2020-02-01|-|-|- 352 | -|Journal Of Automated Reasoning|-|-|-|- 353 | IJAR|International Journal Of Approximate Reasoning|-|-|-|- 354 | AAMAS|Autonomous Agents and Multi-Agent Systems|2019-11-15|-|-|- 355 | IJIS|International Journal Of Intelligent Systems|-|-|-|- 356 | TG|IEEE Transactions on Games|-|-|-|- 357 | JSLHR|Journal Of Speech, Language, and Hearing Research|-|-|-|- 358 | -|Neural Computation|-|-|-|- 359 | -|Applied Intelligence|-|-|-|- 360 | TACL|Transactions of the Association for Computational Linguistics|-|-|-|- 361 | -|智 能 系 统 学 报|-|-|-|- 362 | -|中 文 信 息 学 报|-|-|-|- 363 | A类会议| | | | | 364 | CVPR|IEEE Conference on Computer Vision and Pattern Recognition|2019-11-15|-|-|- 365 | ICCV|International Conference on Computer Vision|2019-03-01|-|-|- 366 | ICML|International Conference on Machine Learning|2020-02-07|-|-|- 367 | ACL|Annual Meeting of the Association for Computational Linguistics|2019-12-09|-|-|- 368 | ECCV|European Conference on Computer Vision|2020-03-05|-|-|- 369 | COLT|Annual Conference on Computational Learning Theory|2020-01-31|-|-|- 370 | NeurIPS|Annual Conference on Neural Information Processing Systems|2019-05-23|-|-|- 371 | AAAI|AAAI Conference on Artificial Intelligence|2019-09-05|-|-|- 372 | EMNLP|Conference on Empirical Methods in Natural Language Processing|2019-05-21|-|-|- 373 | ICRA|IEEE International Conference on Robotics and Automation|2019-09-15|-|-|- 374 | ICLR|International Conference on Learning Representations|-|-|-|- 375 | RSS|Robotics: Science and Systems ? A Robotics Conference|-|-|-|- 376 | B类会议| | | | | 377 | BMVC|British Machine Vision Conference|2019-04-29|-|-|- 378 | AISTATS|Artificial Intelligence and Statistics|2019-10-08|-|-|- 379 | NAACL|The Annual Conference of the North American Chapter of the Association for Computational Linguistics|2019-12-09|-|-|- 380 | IJCAI|International Joint Conference on Artificial Intelligence|2020-01-21|-|-|- 381 | AAMAS|International Joint Conference on Autonomous Agents and Multi-agent Systems|2019-11-15|-|-|- 382 | ICAPS|International Conference on Automated Planning and Scheduling|2019-11-20|-|-|- 383 | ICB|International Joint Conference on Biometrics|2019-12-09|-|-|- 384 | GECCO|Genetic and Evolutionary Computation Conference|2020-02-06|-|-|- 385 | ICPR|International Conference on Pattern Recognition|2020-03-02|-|-|- 386 | FG|International Conference on Automatic Face and Gesture Recognition|2019-09-27|-|-|- 387 | ICDAR|International Conference on Document Analysis and Recognition|2019-02-15|-|-|- 388 | IROS|IEEERSJ International Conference on Intelligent Robots and Systems|2020-03-01|-|-|- 389 | COLING|International Conference on Computational Linguistics|2020-04-08|-|-|- 390 | IJCNN|International Joint Conference on Neural Networks|2018-12-15|-|-|- 391 | UAI|International Conference on Uncertainty in Artificial Intelligence|2020-02-20|-|-|- 392 | ALT|International Conference on Algorithmic Learning Theory|2019-09-20|-|-|- 393 | RecSys|Conference on Recommender Systems|-|-|-|- 394 | ## 计算机图形学与多媒体 395 | 名称|全称|截稿时间|结果时间|篇幅|官网 396 | -|-|-|-|-|- 397 | A类期刊| | | | | 398 | TIP|IEEE Transactions on Image Processing|-|-|-|- 399 | TOG|ACM Transactions on Graphics|-|-|-|- 400 | TMM|IEEE Transactions on Multimedia|-|-|-|- 401 | TVCG|IEEE Transactions on Visualization and Computer Graphics|-|-|-|- 402 | CAD|Computer-Aided Design|-|-|-|- 403 | B类期刊| | | | | 404 | -|Signal Processing|-|-|-|- 405 | TCSVT|IEEE Transactions on Circuits and Systems for Video Technology|-|-|-|- 406 | SilMS|SIAM Journal on Imaging Sciences|-|-|-|- 407 | CG|Computers & Graphics|2020-02-01|-|-|- 408 | SPL|IEEE Signal Processing Letters|-|-|-|- 409 | CGF|Computer Graphics Forum|-|-|-|- 410 | Speech Com|Speech Communication|2020-11-30|-|-|- 411 | CAGD|Computer Aided Geometric Design|-|-|-|- 412 | -|计算机辅助设计与图形学学报|-|-|-|- 413 | -|中国图像图形学报|-|-|-|- 414 | -|图学学报|-|-|-|- 415 | A类会议| | | | | 416 | SIGGRAPH|ACM SIGGRAPH Annual Conference|2020-01-22|-|-|- 417 | IEEE VIS|IEEE Visualization Conference|2019-03-31|-|-|- 418 | ACM MM|ACM International Conference on Multimedia|2019-04-01|-|-|- 419 | VR|IEEE Virtual Reality|2019-09-10|-|-|- 420 | B类会议| | | | | 421 | SPM|Symposium on Solid and Physical Modeling|2020-01-20|-|-|- 422 | EGSR|Eurographics Symposium on Rendering|2020-04-07|-|-|- 423 | ISMAR|International Symposium on Mixed and Augmented Reality|2019-03-22|-|-|- 424 | EG|Eurographics|2019-10-03|-|-|- 425 | SGP|Eurographics Symposium on Geometry Processing|2019-04-11|-|-|- 426 | SCA|ACM/Eurographics Symposium on Computer Animation|2020-05-07|-|-|- 427 | EuroVis|Eurographics Conference on Visualization|2019-12-05|-|-|- 428 | ICASSP|IEEE International Conference on Acoustics, Speech and SP|2019-10-21|-|-|- 429 | ICMR|ACM SIGMM International Conference on Multimedia Retrieval|2020-01-11|-|-|- 430 | ICIP|International Conference on Image Processing|2020-01-31|-|-|- 431 | SI3D|ACM Symposium on Interactive 3D Graphics|2019-12-13|-|-|- 432 | PacificVis|IEEE Pacific Visualization Symposium|2019-10-04|-|-|- 433 | PG|Pacific Graphics: The Pacific Conference on Computer Graphics and Applications|-|-|-|- 434 | DCC|Data Compression Conference|2019-11-01|-|10页全文|[https://www.cs.brandeis.edu/~dcc/](https://www.cs.brandeis.edu/~dcc/) 435 | ## 人机交互与普适计算 436 | 名称|全称|截稿时间|结果时间|篇幅|官网 437 | -|-|-|-|-|- 438 | A类期刊| | | | | 439 | IJHCS|International Journal of Human Computer Studies|-|-|-|- 440 | TOCHI|ACM Transactions on Computer-Human Interaction|-|-|-|- 441 | B类期刊| | | | | 442 | UMUAI|User Modeling and User-Adapted Interaction|-|-|-|- 443 | -|IEEE Transactions on Human-Machine Systems|-|-|-|- 444 | HCI|Human Computer Interaction|-|-|-|- 445 | PMC|Pervasive and Mobile Computing|2020-01-31|-|-|- 446 | IJHCI|International Journal of Human-Computer Interaction|-|-|-|- 447 | BIT|Behaviour & Information Technology|-|-|-|- 448 | CSCW|Computer Supported Cooperative Work|2020-04-15|-|-|- 449 | IWC|Interacting with Computers|-|-|-|- 450 | A类会议| | | | | 451 | CSCW|ACM Conference on Computer Supported Cooperative Work and Social Computing|2020-04-15|-|-|- 452 | UbiComp|ACM International Conference on Ubiquitous Computing|2020-05-15|within 8 weeks|13-16页正文|[http://ubicomp.org/ubicomp2020/](http://ubicomp.org/ubicomp2020/) 453 | UIST|ACM Symposium on User Interface Software and Technology|2020-04-01|-|-|- 454 | CHI|ACM Conference on Human Factors in Computing Systems|2019-09-20|-|-|- 455 | B类会议| | | | | 456 | PERCOM|IEEE International Conference on Pervasive Computing and Communications|2019-09-20|-|-|- 457 | IUI|ACM International Conference on Intelligent User Interfaces|2019-10-10|-|-|- 458 | MobileHCl|International Conference on Human Computer Interaction with Mobile Devices and Services|-|-|-|- 459 | DIS|ACM Conference on Designing Interactive Systems|2020-01-31|-|-|- 460 | ICMI|ACM International Conference on Multimodal Interaction|2020-05-04|-|-|- 461 | ## 综合与交叉 462 | 名称|全称|截稿时间|结果时间|篇幅|官网 463 | -|-|-|-|-|- 464 | A类期刊| | | | | 465 | JACM|Journal of the ACM|-|-|-|- 466 | Proc. IEEE|Proceedings of the IEEE|-|-|-|- 467 | -|Science China|-|-|-|- 468 | -|中国科学|-|-|-|- 469 | B类期刊| | | | | 470 | TMI|IEEE Transactions on Medical Imaging|-|-|-|- 471 | -|Briefings in Bioinformatics|-|-|-|- 472 | TITS|IEEE Transactions on Intelligent Transportation Systems|-|-|-|- 473 | TGARS|IEEE Transactions on Geoscience and Remote Sensing|-|-|-|- 474 | TASAE|IEEE Transactions on Automation Science and Engineering|-|-|-|- 475 | -|Bioinformatics|-|-|-|- 476 | JAMIA|Journal of the American Medical Informatics Association|-|-|-|- 477 | JBHI|IEEE Journal of Biomedical and Health Informatics|-|-|-|- 478 | TBD|IEEE Transactions on Big Data|-|-|-|- 479 | -|BMC Bioinformatics|-|-|-|- 480 | GRSL|IEEE Geoscience and Remote Sensing Letters|-|-|-|- 481 | TCBB|IEEE-ACM Transactions on Computational Biology and Bioinformatics|-|-|-|- 482 | JCST|Journal of Computer Science and Technology|-|-|-|- 483 | -|Tsinghua Science and Technology|-|-|-|- 484 | -|计算机学报|-|-|-|- 485 | -|计算机研究与发展|-|-|-|- 486 | -|电子学报|-|-|-|- 487 | -|自动化学报|-|-|-|- 488 | -|系统仿真学报|-|-|-|- 489 | -|清华大学学报(自然科学版)|-|-|-|- 490 | A类会议| | | | | 491 | RECOMB|International Conference on Research in Computational Molecular Biology|2019-11-01|-|-|- 492 | ISMB|International conference on Intelligent Systems for Molecular Biology|2020-01-30|-|-|- 493 | WWW|International World Wide Web Conferences|2019-10-14|2020-1-10|长文12页,短文6页|[https://www2020.thewebconf.org/](https://www2020.thewebconf.org/) 494 | EC|ACM Conference on Economics and Computation|-|-|-|- 495 | B类会议| | | | | 496 | HSCC|International Conference on Hybrid Systems: Computation and Control|-|-|-|- 497 | MICCAI|International Conference on Medical Image Computing and Computer Assisted Intervention|-|-|-|- 498 | BPM|International Conference on Business Process Management|-|-|-|- 499 | --------------------------------------------------------------------------------