#Walls

leetcode 542. 01 Matrix 、663. Walls and Gates(lintcode) 、773. Sliding Puzzle 、803. Shortest Distance from All Buildings

542.01Matrixhttps://www.cnblogs.com/grandyang/p/6602288.html将所有的1置为INT_MAX,然后用所有的0去更新原本位置为1的值。最短距离肯定使用bfs。每次更新了值的地方还要再加入队列中。classSolution{public:vector<vecto...

Centos7下关闭Firewalls配置iptables

   在网上搜索了很多这种资料,现在总结一下以备后用。  1、关闭防火墙:sudo systemctl stop firewalld.service  2、关闭开机启动:sudo systemctl disable firewalld.service...