摘要:
哈夫曼树 POJ1521 https://www.cnblogs.com/OFSHK/p/12544649.html POJ3253 看一下题目,是一个模板题 1 #include<stdio.h> 2 #include<string.h> 3 #include<iostream> 4 #inclu 阅读全文
摘要:
就是题意不会太好理解和转换 最小生成树模板题 Kruskal: 1 //kruskal 2 #include<stdio.h> 3 #include<string.h> 4 #include<iostream> 5 #include<algorithm> 6 #include<queue> 7 #i 阅读全文
摘要:
先登录数据库:在终端输入 /usr/local/mysql/bin/mysql -u root -p 如何查询数据库服务器中所有的数据库? 如何选中一个数据库进行操作? use 数据库名 在use操作之后才能再进行select * from admin;查询该数据库中所有记录 查询特定信息:sele 阅读全文