logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

解决warning: incompatible implicit declaration of built-in function 'strlen'

c语言编译时,对于类似于warning: incompatible implicit declaration of built-in function 'strlen'的警告,可通过添加相应的头文件来消除。如strlen、strcpy等对字符串的操作函数,需要添加#include <string.h>如malloc、free等对内存的操作函数,需要添加#include <...

[POJ2387] Til the Cows Come Home(最短路)

传送门:POJ 2387 Til the Cows Come Home千万看清点数和路径数的输入顺序。否则。你会像我一样WA和RE一个下午。#include <iostream>#include <vector>#include <queue>#include <string.h>#define INF 0x3f3f3f3fus...

湖南大学编译原理实验

实验一(一)程序设计语言及其编译器实现概览(1.5小时)实验一(二)DFA的编程实现(1.5小时)实验二(一)学习经典的词法分析器(1.5小时)实验二(二)实现一门语言的词法分析器(1.5小时)实验三(一)NFADFA(1.5小时)实验三(二)DFA化简(1.5小时)实验四(一)学习经典的语法分析器(1.5小时)实验四(二)实现一门语言的语法分析器(1.5小时)实验...

到底了