摘要: 转载于:https://blog.csdn.net/bitcarmanlee/article/details/51154481 从线性分类器谈起 给定一些数据集合,他们分别属于两个不同的类别。例如对于广告数据来说,是典型的二分类问题,一般将被点击的数据称为正样本,没被点击的数据称为负样本。现在我们要 阅读全文
posted @ 2020-08-29 22:57 诗和远方* 阅读(420) 评论(0) 推荐(0) 编辑
摘要: 代码: #include <iostream>#include <stack>using::std::stack; class Cqueue{public: stack<int>stack1,stack2; Cqueue(){};//构造函数; void appendTail(int val) { 阅读全文
posted @ 2020-08-29 18:33 诗和远方* 阅读(436) 评论(0) 推荐(0) 编辑
摘要: 代码: #include <iostream>#include <string.h> #define N 3 typedef struct Queue{ int a[N]; int head,tail;}Queue; void show(Queue* p){ for(int i=0;i<N;i++) 阅读全文
posted @ 2020-08-29 15:48 诗和远方* 阅读(599) 评论(0) 推荐(0) 编辑