摘要:
MySQL 1、修改MySQL的密码 1、方法一:用SET PASSWORD命令 首先登录MySQL 格式:mysql> set password for 用户名@localhhost = password('新密码'); 例子:mysql> set password for root@localh 阅读全文
摘要:
/** 图论之最短路径Dijkstra算法 */ #include<string.h> #include<stdio.h> #include<vector> #include<queue> using namespace std; const int MAXN = 200; const int IN 阅读全文