摘要:
2019-11-30 14:15:22 参考:https://www.cnblogs.com/Yintianhao/p/9199484.html 如图 问题出在mysql的路径上,其实报错已经讲得听清楚了 预期应该是这样 结果却是这样 所以解决办法当然就是修改这个路径,出现这个报错原因大多因为之前电 阅读全文
posted @ 2019-11-30 14:16
JasonPeng1
阅读(535)
评论(0)
推荐(0)
摘要:
2019-11-30 13:53:39 可以看到<q></q>内部里面的内容加上了引号。 <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>Starbuzz Coffee</title> <style type = "text 阅读全文
posted @ 2019-11-30 14:15
JasonPeng1
阅读(199)
评论(0)
推荐(0)
摘要:
2019-11-30 10:05:54 如何把背包问题画一幅DAG呢?这是自己最近很困惑的。想看看到底这个DAG是啥样! #include <bits/stdc++.h> #include <stdlib.h> #include <stdio.h> using namespace std; #def 阅读全文
posted @ 2019-11-30 10:27
JasonPeng1
阅读(573)
评论(0)
推荐(0)
摘要:
2019-11-30 10:08:41 #include<bits/stdc++.h> #include <stdlib.h> #include <stdio.h> using namespace std; int w[30],v[30],f[50000]; int n,m; int main(){ 阅读全文
posted @ 2019-11-30 10:10
JasonPeng1
阅读(147)
评论(0)
推荐(0)
摘要:
2019-11-30 10:04:17 此代码是经过二维数组优化成一维数组后的代码。 先理解二维数组的代码更容易理解。而一维数组中的j 从 W开始 递减遍历。 #include<bits/stdc++.h> #include <stdlib.h> #include <stdio.h> using n 阅读全文
posted @ 2019-11-30 10:05
JasonPeng1
阅读(182)
评论(0)
推荐(0)