自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(22)
  • 收藏
  • 关注

原创 一文搞懂各种属性及方法

class Base: def __init__(self): self.__x = "a" __private = 1024 count = 100 @classmethod def rcount(cls): print(Base.count) @staticmethod def sta_rcount()...

2020-01-17 12:06:30 227

原创 神经网络及BN矩阵推导

2019-12-17 23:12:17 235

原创 魔兽世界之二:装备

#include<iostream>#pragma warning(disable:4996)using namespace std;class CHeadQuarter;class CWarrior { int No; int KindNo; CHeadQuarter* pHeadQuarter;public: static int strength[5];...

2019-09-14 20:21:19 617

原创 程序设计与算法(三)测验题

魔兽世界之一:备战#include<iostream>using namespace std;#pragma warning(disable:4996)class CHeadQuarter;class CWarrior {private: int No; int KindNo; CHeadQuarter* p;public: static const cha...

2019-09-14 10:31:01 504

原创 程序设计与算法(三)第4周测验(2019夏季)

001:MyString#include <iostream>#include <string>#include <cstring>using namespace std;class MyString { char* p;public: MyString(const char* s) { if (s) { p = new char[...

2019-08-06 22:48:44 417

原创 程序设计与算法(三)测验题

013:魔兽世界之一:备战#include <iostream>#pragma warning(disable:4996)using namespace std;class Dragon { int number; int strength; int attack;public: Dragon(int n) :strength(n), number(0) {}...

2019-08-06 12:03:33 435

原创 程序设计与算法(三)第3周测验(2019夏季)

001:返回什么才好呢#include <iostream>using namespace std;class A {public: int val; A(int // Your Code Here n=123) { val = n; } A(A& a) { val = a.val; } A& GetObj() { ret...

2019-08-03 23:22:01 1208 1

原创 002:简单的整数划分问题

002:简单的整数划分问题等价于放苹果#include <iostream>#pragma warning(disable:4996)using namespace std;int f(int m,int n) { if (m < n) return f(m, m); if (m == 0) return 1; if (n == 0) retur...

2019-08-02 20:08:49 195

原创 程序设计与算法(二)测验汇总(2019夏季)

003:全排列#include <iostream>#include<algorithm>#include<cstring>#pragma warning(disable:4996)using namespace std;char str[10];void permutation(char* done,char* left,int index)...

2019-08-02 10:25:50 157

原创 程序设计与算法(一)第13周测验(2019夏季

001:冷血格斗场#include <iostream>#include<map>#include<cmath>#include<algorithm>#pragma warning(disable:4996)using namespace std;typedef int id;typedef int attack;typedef...

2019-08-01 12:44:43 171

原创 程序设计实习MOOC / 程序设计与算法(一)第12周测验(2019夏季)

003:Set#include <iostream>#include<set>#include<cstring>#pragma warning(disable:4996)using namespace std;typedef multiset<int>::iterator MultIt;void add(multiset<in...

2019-07-31 21:49:21 416

原创 程序设计实习MOOC / 程序设计与算法(一)第11周测验(2019夏季)

003:Aggressive cows#include<iostream>#include<cstdlib>#pragma warning(disable:4996)using namespace std;const int NUM = 100000;int x[NUM];int Mycompare(const void* e1, const void* ...

2019-07-31 15:38:43 326

原创 程序设计与算法(一)第11周测验(2019夏季)

001:派#include <iostream>#include <iomanip>#include<cstring>#pragma warning(disable:4996)using namespace std;const double EPS = 1.0E-5;const double PI = 3.141592653589793;co...

2019-07-30 23:08:13 192

原创 程序设计实习MOOC / 程序设计与算法(一)第10周测验(2019夏季)

001:成绩排序#include <iostream>#include<cstring>using namespace std;#pragma warning(disable:4996)struct Student { char name[100]; int score;};const int NUM = 20;Student stu[NUM];v...

2019-07-30 17:06:36 376

原创 程序设计实习MOOC / 程序设计与算法(一)第6周测验(2019夏季)

001:Pell数列#include <iostream>#include<cstdio>#include<cstring>#include<cmath>#pragma warning(disable:4996)using namespace std;unsigned int pell[1000010];int a[100];i...

2019-07-26 20:58:09 255

原创 程序设计实习MOOC / 程序设计与算法(一)第5周测验(2019夏季)

003:年龄与疾病#include <iostream>#include <cstdio>#include<iomanip>#define _CRT_SECURE_NO_WARNINGS#pragma warning(disable:4996)using namespace std;int main(){ //freopen("C:\\Us...

2019-07-26 16:53:15 332

原创 程序设计实习MOOC / 程序设计与算法(二)第1周测验(2019夏季)

001:特殊密码锁#define _CRT_SECURE_NO_WARNINGS#include <iostream> #include <cstdio>#include<memory>#include<string>#include<cstring>using namespace std;int GetBit(int...

2019-07-21 22:36:15 227

原创 程序设计实习MOOC / 程序设计与算法(一)第4周测验(2019夏季)

005:雇佣兵#define _CRT_SECURE_NO_WARNINGS#include <iostream> #include <cstdio>using namespace std;int main(){ int M, N, X, n,nsume; cin >> M >> N >> X; while (X) ...

2019-07-20 20:44:51 562

原创 程序设计与算法(一)C语言程序设计--第三周测试

001:奇偶数判断#define _CRT_SECURE_NO_WARNINGS#include <iostream> #include <cstdio>using namespace std;int main(){ int n; cin >> n; if (n % 2) cout << "odd" << end...

2019-07-20 00:28:15 373

原创 矩阵乘法的意义

矩阵乘法,最初定义为对应元素相乘,即Matlab中的点运算符,后来才有线性代数中的定义。简而言之,矩阵乘法的意义就是线性映射的复合。如果想要彻底理解矩阵的乘法,那么需要理解以下几个概念:线性映射,线性映射的复合。1.线性映射Let:UV,U,V为数域K上的线性空间,且满足对任意1.2.称映射为K上线性映射,当V=U时,称该映射为线性变换。当映射为双射时,称为线性同构可以证...

2019-06-29 18:29:18 4232

原创 Frobenius标准型与Jordan标准型总结

1.数域不同Frobenius标准型:任意数域PJordan标准型:复数域Jordan标准型,可以形式化理解为把Frobenius标准型中的d(λ)继续分解,进而细化到一次因式的乘机,因此Frobenius标准型为任意数域,Jordan标准型为复数域2.小块性质Frobenius块性质:行列式因子:1….1, d(λ)不变因子为:1….1, d(λ)特征...

2019-05-09 02:33:11 8276 1

原创 王萼芳第一章

1.数域,不定元,首项系数、次数证明2.带余除法,综合除法,多项式展开,整除,整除4性质3.最大公因式,互素,互素充要条件及3推论4.不可约多项式、充要条件、2推论、一次多项式、任意数域因式分解存在性及唯一性,标准分解式5.重因式,N阶微商,N阶微商与重因式关系,重因式存在判别、去重方法6.多项式函数,余数定理,根一次因式,任意数域N次多项式根数量,多项式函数、多项式等价原理,...

2019-04-10 23:39:36 419

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除