摘要:
用emwin做界面的时候遇到的错误,MDK5可能无法编译一些汉字编码,对应汉字在信息反馈中会显示为乱码,更会附带一些如“expected a "}"”这样的错误提示。 解决方法:Options for Target “你的工程名”(MDK5的魔术棒) -> C/C++ -> Misc Control 阅读全文
摘要:
http://acm.hdu.edu.cn/showproblem.php?pid=5512gcd(a,b)的位置都是可以选的,之后判断一下奇偶#include #include using namespace std;int gcd(int a, int b) { return a == 0... 阅读全文
摘要:
http://acm.hdu.edu.cn/showproblem.php?pid=1863复习考研练练写Prim,第一次写,乱搞的,有点难看邻接表+堆#include #include #include #include using namespace std;int n, m, cnt, ct,... 阅读全文
摘要:
输入n,把1-n分成两个和相等的子集,有多少种分法想了个dp,直接背包也行#include #include using namespace std;int dp[55];int main() { int n; scanf("%d", &n); int s = n * (n + 1... 阅读全文