以下这些实验中的代码全部是我自己编写调试通过的,到此,最后进行一下汇总. 数字图像处理实验(1):PROJECT 02-01, Image Printing Program Based on Halftoning (基于半色调技术的图像打印技术) 链接:http://blog.csdn.net/hongbin_xu/article/details/70340458 数字图像处理实验(2):PROJECT 02-02, Reducing the Number of Gray Levels in a…
人生中第一个AC的广搜题目,喵呜,C++的STL果真不错, #include<stdio.h> #include<queue> #include<string.h> #include<windows.h> using namespace std; bool visited[100][100][100]; int a, b, c; struct Node{ int a; int b; int c; int s; }; Node water; Node cup;…