- 博客(9)
- 收藏
- 关注
原创 Initializing Spring DispatcherServlet ‘dispatcherServlet‘错误
Initializing Spring DispatcherServlet 'dispatcherServlet'错误
2022-11-10 10:00:08 2290 1
原创 概率论 第四章复习
目录四、随机变量的数字特征1、数学期望2、方差3、协方差及相关系数4、矩、协方差矩阵1、数学期望定义 设离散型随机变量X的分布律为P{X=}=,k=1,2,...,若级数绝对收敛,则称级数的和为随机变量X的数学期望,记为E(X),即E(X)= 设连续型随机变量X的概率密度为f(x),若积分绝对收敛,则称积分的值为随机变量X的数学期望,记为E(X),即E(X)=(数学期望简称期望,又称均值)定理 设Y是随机变量X的函数:Y...
2022-05-16 22:11:42 313
原创 查询奖励信息
#include <stdio.h>#include <stdlib.h>struct Student//定义一个学生结构体{char name[300];int num;char sex[2];int age;char dept[100];char prize[50];};//输入:录入学生信息void input(Student s[],int n);//输出:在显示台输出存储在数组中的学生信息void output(Student s...
2021-11-21 17:43:38 287
原创 数据库查询页面C#
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Data.SqlClient;using System.Windows.Forms;namespace 连.
2021-11-21 17:40:10 523
原创 串的堆式存储相关操作
#include<stdio.h>#include<stdlib.h>#include<iostream>using namespace std;#define OK 1#define ERROR 0#define OVERFLOW -2#define N 100#define MAXSIZE 100typedef int Status;typedef char ElemType;typedef struct{ char *ch;/...
2021-11-21 17:25:33 369
原创 链队相关操作
#include<stdlib.h>#include<stdio.h>#include<iostream>using namespace std;#define OK 1#define ERROR 0#define OVERLIOW -2typedef int Status;typedef int QElemType;typedef struct QNode{ QElemType data; struct QNode *next;}QNo.
2021-11-21 17:21:18 410
原创 顺序栈相关操作
#include <stdio.h>#include <stdlib.h>#include <iostream>#define MAXSIZE 6//顺序栈的存储空间的初始分配量 using namespace std;#define ERROR 0#define OK 1#define OVERFLOW -2typedef int SElemType;typedef int Status;typedef struct{ SElemType ...
2021-11-21 17:17:39 545
原创 单链表相关操作
#include <stdio.h>#include <stdlib.h>#include <iostream>using namespace std;#define OK 1#define ERROR 0#define OVERFLOW -2typedef int Status;typedef int ElemType;typedef struct LNode{ ElemType data;//结点的数据域 struct LNode *.
2021-11-16 19:29:33 157
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人