JzL2DM
码龄12年
关注
提问 私信
  • 博客:120,926
    120,926
    总访问量
  • 123
    原创
  • 2,182,872
    排名
  • 56
    粉丝
  • 0
    铁粉
IP属地以运营商信息为准,境内显示到省(区、市),境外显示到国家(地区)
IP 属地:山东省
  • 加入CSDN时间: 2012-09-25
博客简介:

纪子龙的专栏

查看详细资料
个人成就
  • 获得14次点赞
  • 内容获得51次评论
  • 获得22次收藏
创作历程
  • 1篇
    2017年
  • 2篇
    2016年
  • 53篇
    2013年
  • 67篇
    2012年
成就勋章
TA的专栏
  • 数据挖掘
  • JAVA
    2篇
  • c/c++
    39篇
  • Python网络数据采集
  • 进化计算
  • 机器学习
    1篇
创作活动更多

AI大模型如何赋能电商行业,引领变革?

如何使用AI技术实现购物推荐、会员分类、商品定价等方面的创新应用?如何运用AI技术提高电商平台的销售效率和用户体验呢?欢迎分享您的看法

175人参与 去创作
  • 最近
  • 文章
  • 代码仓
  • 资源
  • 问答
  • 帖子
  • 视频
  • 课程
  • 关注/订阅/互动
  • 收藏
搜TA的内容
搜索 取消

机器学习之贝叶斯网络

贝叶斯网络是一种概率图模型,是一种有效的不确定性知识表达和推理工具。贝叶斯网络的学习包括:结构学习以及参数学习两部分。 根据结构学习算法特点的不同,把结构学习算法归纳为基于约束的学习、基于评分搜索的学习、混合学习、动态规划结构学习、模型平均结构学习和不完备数据集的结构学习。 基于约束的学习:CB 学习算法, 一般使用CI 检验或互信息来辨识变量间的依赖关系和独立关系, 然后
原创
发布博客 2017.05.06 ·
2573 阅读 ·
2 点赞 ·
1 评论 ·
2 收藏

数据挖掘十大经典算法之Apriori算法以及Java实现

1.什么是Apriori算法?2.Apriori的具体实现Apriori算法是一种发现频繁项集的基本算法,通过Apriori算法得出频繁项集,以此来产生强关联规则。 Apriori算法思想是:使用一种逐层搜索的迭代算法。2.Apriori的具体实现通过扫描数据库,累计每个项的计数,并收集满足最小支持度计数的项,找出频繁1项集的集合。该集合记为L₁,然后通过L₁找出频繁2
原创
发布博客 2016.09.18 ·
6035 阅读 ·
2 点赞 ·
4 评论 ·
23 收藏

Java中 final,finally和finalize的区别

1.final:a.  final可以修饰类,所修饰的类不可以被继承。b. final可以修饰方法,所修饰方法不能被重写。c. final可以修饰变量,所修饰变量只能赋值一次。2.finally:finally 是try语句中的语句体, 不能单独的使用,用来释放资源。3.finalize:finalize是一个方法, 当垃圾回收器确定不存在该对象的更多引用的时候,由对象
原创
发布博客 2016.09.11 ·
413 阅读 ·
2 点赞 ·
0 评论 ·
0 收藏

14_5立体类族共有的抽象类

#include using namespace std;class CSolid{public: virtual double Surarea()const=0; virtual double volume()const=0;};class CCube: public CSolid{public: virtual double volum
原创
发布博客 2013.06.04 ·
782 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

14_3Shape

#include using namespace std;class Shape{public: virtual double area() const =0;};class Circle:public Shape{public: Circle(double r):radius(r) {} virtual double area() c
原创
发布博客 2013.06.04 ·
1348 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

14_2Aniaml

#include #include using namespace std;class Animal{public: virtual void cry() { cout<<"不知哪种动物,让我如何学叫?"<<endl; }};class Mouse:public Animal{public : Mouse(str
原创
发布博客 2013.05.31 ·
3725 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

13_4

#includeusing namespace std;class Date{public: void SetDate(int y,int m,int d) { year=y; month=m; day=d; } void PrintDate() { cout<
原创
发布博客 2013.05.29 ·
615 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

13_3虚基类

#include #include#include using namespace std;enum vehicleStaus {rest, running}; //车辆状态:泊车、行进class vehicle //车辆类{protected: int maxSpeed; //最大车速 int currentSpeed; //当前速度 int weig
原创
发布博客 2013.05.27 ·
657 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

13_2多重继承

#include #include using namespace std;class Teacher{public: Teacher(string n,int ag,string s,string add,long phnum,string tit); void display();protected: string name; int age; st
原创
发布博客 2013.05.27 ·
707 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

13_1理解基类中成员的访问限定符和派生类的继承方式

#include #include using namespace std;class StudentA //(1)修改studentA类中各数据成员和成员函数的访问限定符为public时没有出现错误,修改为private时显示错误为error2248即私有成员不能再派生类内使用。{public: StudentA(int n,string nam,char s);
原创
发布博客 2013.05.27 ·
1074 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

9_1运算符的重载

#include using namespace std;class Complex{public: Complex(){real=0;imag=0;} Complex(double r,double i){real=r;imag=i;} //Complex &operator=(Complex &c){real=c.real;imag=c.imag;return
原创
发布博客 2013.05.27 ·
840 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

11_3CEmployee继承自CPerson类

#include #include #include using namespace std;class CPerson{protected: char *m_szName; char *m_szId; int m_nSex;//0:women,1:man int m_nAge;public: CPerson(char *name,char *i
原创
发布博客 2013.05.20 ·
703 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

11_2

#include#includeusing namespace std;class Point //定义坐标点类{public: Point():x(0),y(0) {}; Point(double x0, double y0):x(x0), y(y0) {}; void PrintPoint(); //输出点的信息 double get
原创
发布博客 2013.05.10 ·
547 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

11_1

#include#includeusing namespace std;class Point //定义坐标点类{public: Point():x(0),y(0) {}; Point(double x0, double y0):x(x0), y(y0) {}; void PrintPoint(); //输出点的信息 double x,y
原创
发布博客 2013.05.10 ·
763 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

8_3分数类的运算符重载

#include using namespace std;class CFraction{private:int nume; // 分子int deno; // 分母public: //构造函数及运算符重载的函数声明 CFraction(int nu=0,int de=1):nume(nu),deno(de){} CFraction operator+(CF
原创
发布博客 2013.04.24 ·
594 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

8_2时间类中的运算符重载

#include using namespace std;class CTime{private: unsigned short int hour; // 时 unsigned short int minute; // 分 unsigned short int second; // 秒public: CTime(int h=0,int m=0,int
原创
发布博客 2013.04.24 ·
605 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

8_1_3

#include class Complex{public:Complex(){real=0;imag=0;}Complex(double r,double i){real=r;imag=i;}friend Complex operator+(double d,Complex &b);friend Complex operator-(double d,Complex &
原创
发布博客 2013.04.19 ·
821 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

8_2_2友元函数复数类

#include class Complex{public:Complex(){real=0;imag=0;}Complex(double r,double i){real=r;imag=i;}friend Complex operator+(Complex &c,Complex &b);friend Complex operator-(Complex &c,Compl
原创
发布博客 2013.04.19 ·
1075 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

8_1_1复数类的运算符重载

#include using namespace std;class Complex{public:Complex(){real=0;imag=0;}Complex(double r,double i){real=r;imag=i;}Complex operator+(Complex &c);Complex operator-(Complex &c);Compl
原创
发布博客 2013.04.19 ·
905 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

7_6友元复数模板类

#include template class Complex{public:Complex(){real=0,imag=0;}Complex(numtype r,numtype i){real=r;imag=i;}Complex complex_add( Complex );template friend Complex add_complex(Complex ,
原创
发布博客 2013.04.16 ·
986 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏
加载更多