自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 【中等】【177. 第N高的薪水】SQL函数浅识

按照以下步骤进行操作:1.使用CREATE FUNCTION语句创建函数,并指定函数名称。2.在括号中定义函数的参数,并指定每个参数的数据类型。3.使用RETURNS关键字指定函数的返回值的数据类型。4.可选地使用DETERMINISTIC关键字指定函数是否是确定性的(即给定相同的输入是否总是生成相同的输出)。5.可选地使用SQL DATA ACCESS子句指定函数的SQL数据访问模式。6.在BEGIN和END关键字之间编写函数的具体逻辑。

2023-08-08 17:36:25 97

原创 【中等】【176. 第二高的薪水】limit,offset与ifnull函数

在MySQL中,LIMIT和OFFSET是常用的用于分页查询的关键字。LIMIT用于控制返回结果的行数,而OFFSET则用于指定结果集的偏移量,即从哪一行开始返回结果。其中,row_count表示要返回的行数,offset表示要跳过的行数。这将从表中跳过前 10 行记录,然后返回接下来的 5 行记录,即第 11 行到第 15 行。需要注意的是,OFFSET的值是基于0的索引,即第一行为0。如果我们想要查询前 N 条记录,可以将 OFFSET 设置为 0,LIMIT 设置为 N。请注意,

2023-08-04 03:20:26 147 1

原创 【简单】【175. 组合两个表】联结方式总结!

连接方式总结!

2023-08-02 12:18:18 104

原创 Java--IDEA控制台输出output中文乱码

1.打开intelliidea安装路径,在bin中找到idea64.exe.vmoption文件,用编辑器打开,在最后一行都填加:-Dfile.encoding=utf-82.设置idea file编码。在菜单栏找到”File->settings->搜索File Encodeing” 设置utf-8。如图所示:3.设置idea server编码。在菜单栏找到”run->editconfigration” 找到”server”选项卡 设置 vm option为 -Dfile.e

2021-11-26 11:14:01 808

原创 JavaWeb

JSP文件外部链接CSS:< link href="${APP_PATH}/resources/normalize.css-master/normalize.css-master/normalize.css" rel=“stylesheet”>

2021-11-24 09:09:14 181

原创 数据库语句

1. 数据定义// 定义模式create schema 模式名 authorization 用户名;//删除模式drop schema 模式名 cascade/restrict;//定义基本表create table 表名 (列名 数据类型 列级完整性约束,列名 数据类型 列级完整性约束,列名 数据类型 列级完整性约束);//修改基本表alter table 表名 add 新列名 数据类型 完整性约束条件;alter table 表名 add 表级完整性约束条件;alter

2021-11-09 01:11:06 349

原创 算法与数据结构复习(2021/7/13起持续更新欢迎指正)

初等排序插入排序在插入排序中,只将比取出的值大的元素向后平移,不相邻的元素不会直接交换,因此排序十分稳定。输入的数据的顺序会大幅度影响它的复杂度,所以插入排序的优势在于能快速处理相对有序的数据复杂度O(N²)C++实现#include<iostream>using namespace std;void trace(int a[],int n){ int i; for (i = 0;i < n; i++) { if (i > 0) cout <

2021-07-13 17:45:33 81

原创 《烟雨行舟》 对象指针与对象数组(拉丁舞)(第14周课后习题)

#include <iostream>#include <string>using namespace std;const int K=2;const int N=20;class Student{ string name; Student *welcome[K]; Student *pair; public: void init(string &name, Student *a, Student *b) { this..

2020-05-25 21:08:30 374 1

原创 《烟雨行舟》 友元函数的练习(第14周课后习题)

#include<iostream>using namespace std;class Car;class Boat{public: Boat(int a) { weight=a; } friend int getTotalWeight(Boat&a,Car&b);private: int weight;};class Car{public: Car(int a) { weight=a; } friend int get.

2020-05-25 21:02:18 259

原创 《烟雨行舟》 动态二维数组的转置(第14周课后习题)

#include<iostream>#include <iomanip>using namespace std;class Matrix{private: int x,y,i,j; int a[10][10],b[10][10];public: Matrix(int a,int b) { x=a; y=b; } void ReadMatrix();//输入二维矩阵 void WriteMatrix();//输出二维矩阵 void Transpo..

2020-05-25 21:00:49 172

原创 《烟雨行舟》 计算高考状元(第14周课后习题)

第14周课后习题复数类的操作#include<iostream>#include<cstring>using namespace std;class student{public: void set(int a,int b,int c,int d) { maths=a; chinese=b; english=c; comprehensive=d; all=a+b+c+d; } friend student top(const studen

2020-05-25 20:54:49 146

原创 《烟雨行舟》 复数类的操作(第14周课后习题)

第14周课后习题复数类的操作#include<iostream>using namespace std;class complex{private: double real,image;public: complex(double n,double m) { real=n; image=m; } void trans() { real=-real; image=-image; } void print() { cout<<"

2020-05-25 20:49:30 123

原创 《烟雨行舟》 友元很简单2016final(第14周课后习题)

第14周课后习题友元很简单2016final#include<iostream>using namespace std;class student{public: void set(int a,int b) { num=a; scores=b; } friend student* average(student *p,int count);private: int num,scores;}; student* average(student *

2020-05-25 20:46:31 278

原创 烟雨行舟》 各省总销量及最高销量(对象数组)(第14周课后习题)

第14周课后习题各省总销量及最高销量这道题只有8分,目前还没找到BUG,还望赐教裁判测试程序样例:#include <iostream>using namespace std;class Sale { private: string prov,city;//省份,城市 double volume; //销量 public: void setProv(string p); void setCity(string c); void setVolume(dou

2020-05-24 20:43:39 539

原创 《烟雨行舟》 类的声明和成员函数的实现--this指针(第14周课后习题 )

第14周课后习题类的声明和成员函数的实现–this指针好水的一题。。。。。。#include <iostream>using namespace std;class Car{public: void disp_welcomemsg(); int set_wheels(int n); int get_wheels();private: int m_nWheels;};void Car::disp_welcomemsg(){ cout<<"Welcom

2020-05-24 00:19:53 446

原创 第13周课后习题 宿舍谁最高?

第13周课后习题宿舍谁最高?#include<bits/stdc++.h>using namespace std;class Student{ public: string name; int num; int height; int weight;};Student stu[1000005]; //定义一个类数组 ,默认身高都是0 int main(){ int n,i; cin&g

2020-05-23 20:54:39 81

原创 《烟雨行舟》 可变大小矩阵(第14周课后习题 )

第14周课后习题可变大小矩阵#include<iostream>using namespace std;class Matrix{ public: Matrix(int r,int c) { x=r; y=c; } void input() { for(i=0;i<x;i++) { for(j=0;j<y;j++) cin>>a[i][j]; } } void show() {

2020-05-23 20:54:21 573

原创 《烟雨行舟》自定义的学生类(第14周课后习题 )

第14周课后习题自定义的学生类#include <iostream>#include <cstring>using namespace std;class Student{private: int m_id; char m_name[10];public: Student(int id=0,char *name=""); ~Student(); void print();};Student::Student(int

2020-05-23 20:53:56 221

原创 《烟雨行舟》 输出最大值( 第14周课后习题)

第14周课后习题输出最大值#include <iostream>using namespace std;class Student{ public: Student(int n,float s):num(n),score(s){} int num; float score;};int main(){Student stud[5]={ Student(101,78.5),Student(102,85.5),Student(103,98.5), S

2020-05-23 20:53:31 127

原创 《烟雨行舟》 运动成绩排名( 第14周课后习题)

第14周课后习题运动成绩排名设置输出宽度使用setw函数。头文件:#include例子:cout<<setw(5)<<n<<setw(8)<<m<<endl;这道题用两种方法写了函数,一个是头地址,一个是指针法一:#include <iostream>#include <iomanip>#include <string>using namespace std; class Spor

2020-05-23 20:39:40 264

原创 烟雨行舟》 最小栈设计并实现一个MinStack类(第14周课后习题)

第14周课后习题最小栈设计并实现一个MinStack类题目是要求用类与对象的知识,我是用数据结构写了一个弹出最小栈的函数,有时间再来补上#include <iostream>#include<stack>using namespace std;void getmin(stack<int>a) { stack<int>b; //辅助栈,用于储存最小值 b.push(a.top()); //将a栈中的栈顶元素放入b栈中,用于比较

2020-05-23 00:35:07 1483

空空如也

空空如也

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

TA关注的人

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