上一页 1 ··· 9 10 11 12 13
摘要: 这题如果了解复数运算的话很简单。来看一下,输出要求是一般形式,但是我们运算时候用指数形式会更方便,所以我们先用指数形式做乘法,最后再换成一般式。另外c++中也是存在sin和cos等函数的。代码如下:#include#include#includeusing names... 阅读全文
posted @ 2018-03-21 16:55 Dr_Lo 阅读(111) 评论(0) 推荐(0) 编辑
摘要: emmm其他题讲起来很麻烦,但是这题很简单,我就说一下。这题目的是求所结绳子的最大长度,但是每次结绳会对折,也就是长度减半。这样的话短绳子损失的长度少,还有一个前提是结成一根绳子对折次数是一定的,所以只要尽量对折短绳子,减少长绳子对折次数就好了。代码如下:#inclu... 阅读全文
posted @ 2018-03-21 16:52 Dr_Lo 阅读(96) 评论(0) 推荐(0) 编辑
摘要: #include#include#include#includeusing namespace std;struct student{ string id; int g1 = -1;//编程 int g2 = -1;//期中 int g3 = ... 阅读全文
posted @ 2018-03-21 16:47 Dr_Lo 阅读(94) 评论(0) 推荐(0) 编辑
摘要: #include#include#include#includeusing namespace std;struct que{ double sum; int cnum; int rnum; int cnt[5]; bool ans[5]; int ar; int m... 阅读全文
posted @ 2018-03-21 16:45 Dr_Lo 阅读(241) 评论(0) 推荐(0) 编辑
摘要: 最长上升子序列:思路:用数组b[1000]存放在i之前共有多少个上升子字符。并找出其中最长的,记录为len,遍历完0-i之后的len即为i之前最长上升子序列,因此用a[i]记录在i之前的最长上升子序列,共下一个元素参考。在听了郭炜老师的课后,按照他的思路,把这俩题解出... 阅读全文
posted @ 2018-03-21 14:41 Dr_Lo 阅读(403) 评论(0) 推荐(0) 编辑
摘要: (1)size_t find (const string& str, size_tpos = 0) const; //查找对象--string类对象(2)size_t find (const char* s, size_t pos =0) const; //查找对象... 阅读全文
posted @ 2018-03-20 22:32 Dr_Lo 阅读(623) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13