Auto commit

This commit is contained in:
smallkun 2025-03-17 18:51:31 +08:00
commit d2970d183d
9 changed files with 39037 additions and 50 deletions

38756
2207/C语言语法复习.pdf Normal file

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
### 练习一 ### 练习一
**1** ![image-20250315225248590](https://yp.smallkun.cn/markdown/image-20250315225248590.png!compress)
```sql ```sql
#(1)创建数据库 #(1)创建数据库
@ -30,7 +30,7 @@ ALTER TABLE customers RENAME TO customers_info;
ALTER TABLE customers_info DROP c_city; ALTER TABLE customers_info DROP c_city;
``` ```
**2** ![image-20250315225304324](https://yp.smallkun.cn/markdown/image-20250315225304324.png!compress)
```sql ```sql
#(1)创建表时 添加外键约束并指定外键约束名称 #(1)创建表时 添加外键约束并指定外键约束名称
@ -51,6 +51,10 @@ DROP TABLE orders;
### 练习二 ### 练习二
![image-20250315225318753](https://yp.smallkun.cn/markdown/image-20250315225318753.png!compress)
![image-20250315225328264](https://yp.smallkun.cn/markdown/image-20250315225328264.png!compress)
```sql ```sql
#(1)创建表、插入记录 #(1)创建表、插入记录
CREATE TABLE pet( CREATE TABLE pet(
@ -84,8 +88,14 @@ WHERE death IS NOT NULL;
TRUNCATE pet; TRUNCATE pet;
``` ```
---
### 练习三 ### 练习三
![image-20250315225417117](https://yp.smallkun.cn/markdown/image-20250315225417117.png!compress)
![image-20250315225431297](https://yp.smallkun.cn/markdown/image-20250315225431297.png!compress)
```sql ```sql
#1.创建数据库 #1.创建数据库
CREATE DATABASE test_compay DEFAULT CHARACTER SET utf8; CREATE DATABASE test_compay DEFAULT CHARACTER SET utf8;
@ -115,24 +125,118 @@ CREATE TABLE salary(
ALTER TABLE salary ADD CONSTRAINT fk_sal_eid FOREIGN KEY(empid) ALTER TABLE salary ADD CONSTRAINT fk_sal_eid FOREIGN KEY(empid)
REFERENCES employee(empid) ON UPDATE CASCADE ON DELETE CASCADE; REFERENCES employee(empid) ON UPDATE CASCADE ON DELETE CASCADE;
#4插入记录 #4插入记录
INSERT INTO department() INSERT INTO department (depid, depname, deinfo)
VALUES VALUES
(111, '生产部', NULL), (111, '生产部', NULL),
(222, '销售部', NULL), (222, '销售部', NULL),
(333, '人事部', NULL); (333, '人事部', NULL),
(444, '财务部', '负责公司财务管理'),
(555, '技术部', '负责技术研发与支持'),
(666, '市场部', '负责市场推广与品牌建设'),
(777, '客服部', '负责客户服务与支持'),
(888, '采购部', '负责公司物资采购'),
(999, '法务部', '负责公司法律事务'),
(1010, '行政部', '负责公司日常行政管理'),
(1011, '研发部', '负责新产品研发'),
(1012, '培训部', '负责员工培训与发展');
INSERT INTO employee() INSERT INTO employee (empid, name, sex, title, birthday, depid)
VALUES VALUES
(1001, '张三', '男', '高级工程师', '1975-1-1', 111), (1001, '张三', '男', '高级工程师', '1975-1-1', 111),
(1002, '李四', '女', '助工', '1985-1-1', 111), (1002, '李四', '女', '助工', '1985-1-1', 111),
(1003, '王五', '男', '工程师', '1978-11-11', 222), (1003, '王五', '男', '工程师', '1978-11-11', 222),
(1004, '赵六', '男', '工程师', '1999-1-1', 222); (1004, '赵六', '男', '工程师', '1999-1-1', 222),
(1005, '陈七', '女', '会计师', '1980-5-15', 444),
(1006, '刘八', '男', '软件工程师', '1990-8-20', 555),
(1007, '孙九', '女', '市场经理', '1985-12-25', 666),
(1008, '周十', '男', '客服专员', '1992-3-10', 777),
(1009, '吴十一', '女', '采购经理', '1988-7-22', 888),
(1010, '郑十二', '男', '法务顾问', '1983-9-30', 999),
(1011, '王十三', '女', '行政助理', '1995-4-18', 1010),
(1012, '李十四', '男', '研发工程师', '1991-11-5', 1011),
(1013, '赵十五', '女', '培训讲师', '1987-6-12', 1012),
(1014, '孙十六', '男', '技术支持', '1993-2-14', 555),
(1015, '杨十七', '女', '销售代表', '1994-8-8', 222);
INSERT INTO salary() INSERT INTO salary (empid, basesalary, titleSalary, decuction)
VALUES VALUES
(1001, 2200, 1100, 200), (1001, 2200, 1100, 200),
(1002, 1200, 200, NULL), (1002, 1200, 200, NULL),
(1003, 2900, 700, 200), (1003, 2900, 700, 200),
(1004, 1950, 700, 150); (1004, 1950, 700, 150),
(1005, 2500, 800, 100),
(1006, 3000, 1200, 250),
(1007, 2800, 1000, 200),
(1008, 1800, 300, 50),
(1009, 3200, 900, 300),
(1010, 3500, 1000, 400),
(1011, 2000, 400, 100),
(1012, 3100, 1100, 200),
(1013, 2700, 800, 150),
(1014, 2300, 700, 100),
(1015, 2600, 600, 200);
```
![image-20250315225441802](https://yp.smallkun.cn/markdown/image-20250315225441802.png!compress)
---
### 练习四
![image-20250315225803115](https://yp.smallkun.cn/markdown/image-20250315225803115.png!compress)
![image-20250315225818026](https://yp.smallkun.cn/markdown/image-20250315225818026.png!compress)
```sql
```
![image-20250315225829272](https://yp.smallkun.cn/markdown/image-20250315225829272.png!compress)
```sql
```
---
### 练习五
![image-20250315230015174](https://yp.smallkun.cn/markdown/image-20250315230015174.png!compress)
```sql
```
![image-20250315230025538](https://yp.smallkun.cn/markdown/image-20250315230025538.png!compress)
```sql
```
---
### 练习六
![image-20250315230057816](https://yp.smallkun.cn/markdown/image-20250315230057816.png!compress)
```sql
```
---
### 练习七
![image-20250315230113710](https://yp.smallkun.cn/markdown/image-20250315230113710.png!compress)
![image-20250315230128412](https://yp.smallkun.cn/markdown/image-20250315230128412.png!compress)
```sql
```
---
### 练习八
![image-20250315230214156](https://yp.smallkun.cn/markdown/image-20250315230214156.png!compress)
![image-20250315230227129](https://yp.smallkun.cn/markdown/image-20250315230227129.png!compress)
```sql
``` ```

View File

@ -320,7 +320,7 @@ int main( )
return 0; return 0;
} }
``` ```
### CÓïÑÔ-12 ### CÓïÑÔ-12
```c ```c

70
2207/数组练习题.md Normal file
View File

@ -0,0 +1,70 @@
1. **数组求和**
- 编写一个程序定义一个包含10个整数的数组计算并输出数组中所有元素的和。
2. **数组最大值和最小值**
- 编写一个程序定义一个包含10个整数的数组找到并输出数组中的最大值和最小值。
3. **数组逆序**
- 编写一个程序定义一个包含10个整数的数组将数组中的元素逆序存放并输出。
4. **查找元素**
- 编写一个程序定义一个包含10个整数的数组输入一个整数查找该整数是否在数组中。如果存在输出其位置否则输出“未找到”。
5. **数组平均值**
- 编写一个程序定义一个包含10个整数的数组计算并输出数组中所有元素的平均值。
------
### **中级练习题**
6. **数组排序**
- 编写一个程序定义一个包含10个整数的数组使用冒泡排序或选择排序对数组进行升序排序并输出排序后的数组。
7. **数组去重**
- 编写一个程序定义一个包含10个整数的数组去除数组中的重复元素并输出去重后的数组。
8. **数组合并**
- 编写一个程序定义两个包含5个整数的数组将这两个数组合并为一个包含10个整数的数组并输出合并后的数组。
9. **数组查找第二大值**
- 编写一个程序定义一个包含10个整数的数组找到并输出数组中的第二大值。
10. **数组元素统计**
- 编写一个程序定义一个包含10个整数的数组统计数组中正数、负数和零的个数并输出结果。
------
### **高级练习题**
11. **二维数组转置**
- 编写一个程序定义一个3x3的二维数组将其转置行列互换并输出转置后的数组。
12. **矩阵乘法**
- 编写一个程序定义两个3x3的二维数组计算它们的乘积并输出结果矩阵。
13. **数组二分查找**
- 编写一个程序定义一个已排序的包含10个整数的数组输入一个整数使用二分查找算法查找该整数是否在数组中。如果存在输出其位置否则输出“未找到”。
14. **数组元素移动**
- 编写一个程序定义一个包含10个整数的数组将数组中的所有元素向左移动一位第一个元素移动到末尾并输出移动后的数组。
15. **数组子数组和**
- 编写一个程序定义一个包含10个整数的数组找到数组中连续子数组的最大和并输出该和。
------
### **综合练习题**
16. **数组元素频率统计**
- 编写一个程序定义一个包含10个整数的数组统计每个元素在数组中出现的次数并输出结果。
17. **数组元素交换**
- 编写一个程序定义一个包含10个整数的数组将数组中的奇数和偶数分开奇数在前偶数在后并输出结果。
18. **数组元素回文判断**
- 编写一个程序定义一个包含10个整数的数组判断该数组是否是一个回文数组即正序和逆序相同并输出结果。
19. **数组元素模式匹配**
- 编写一个程序定义一个包含10个整数的数组输入一个子数组长度为3判断该子数组是否在原数组中出现并输出结果。
20. **数组元素旋转**
- 编写一个程序定义一个包含10个整数的数组输入一个整数k将数组中的元素向右旋转k位并输出旋转后的数组。
------
### **附加挑战题**
21. **数组元素最大差值**
- 编写一个程序定义一个包含10个整数的数组找到数组中两个元素的最大差值要求较大元素在较小元素之后并输出结果。
22. **数组元素最长连续序列**
- 编写一个程序定义一个包含10个整数的数组找到数组中最长的连续整数序列的长度并输出结果。
23. **数组元素螺旋遍历**
- 编写一个程序定义一个3x3的二维数组按照螺旋顺序遍历数组并输出结果。
24. **数组元素缺失值查找**
- 编写一个程序定义一个包含n-1个整数的数组数组中的元素是1到n之间的整数且没有重复值找到缺失的那个整数并输出结果。
25. **数组元素滑动窗口最大值**
- 编写一个程序定义一个包含10个整数的数组输入一个整数kk < 10找到数组中每个大小为k的滑动窗口的最大值并输出结果

View File

@ -33,29 +33,38 @@ int main(){
```c ```c
#include <stdio.h> #include <stdio.h>
#include <stdlib.h>
#include <string.h> #include <string.h>
int main(){ // 比较函数,用于 qsort
char str[100]; int compare_strings(const void *a, const void *b) {
char temp; return strcmp(*(const char **)a, *(const char **)b);
int i, j;
gets(str);
for(i=0;i<strlen(str)-1;i++){
for(j=0;j<strlen(str)-1-i;j++){
if(*(str+j) > *(str+j+1)){
temp = *(str+j);
*(str+j) = *(str+j+1);
*(str+j+1) = temp;
}
}
}
puts(str);
return 0;
} }
int main() {
// 测试用例:字符串数组
const char *strings[] = {
"banana",
"apple",
"cherry",
"date",
"blueberry"
};
// 计算数组的长度
int length = sizeof(strings) / sizeof(strings[0]);
// 使用 qsort 对字符串数组进行排序
qsort(strings, length, sizeof(const char *), compare_strings);
// 输出排序后的字符串数组
printf("Sorted strings:\n");
for (int i = 0; i < length; i++) {
printf("%s\n", strings[i]);
}
return 0;
}
``` ```
### 3. 字符串插入 ### 3. 字符串插入

View File

@ -1,24 +1,33 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h>
#include <string.h> #include <string.h>
int main(){ // 比较函数,用于 qsort
char str[100]; int compare_strings(const void *a, const void *b) {
char temp; return strcmp(*(const char **)a, *(const char **)b);
int i, j;
gets(str);
for(i=0;i<strlen(str)-1;i++){
for(j=0;j<strlen(str)-1-i;j++){
if(*(str+j) > *(str+j+1)){
temp = *(str+j);
*(str+j) = *(str+j+1);
*(str+j+1) = temp;
}
}
}
puts(str);
return 0;
} }
int main() {
// 测试用例:字符串数组
const char *strings[] = {
"banana",
"apple",
"cherry",
"date",
"blueberry"
};
// 计算数组的长度
int length = sizeof(strings) / sizeof(strings[0]);
// 使用 qsort 对字符串数组进行排序
qsort(strings, length, sizeof(const char *), compare_strings);
// 输出排序后的字符串数组
printf("Sorted strings:\n");
for (int i = 0; i < length; i++) {
printf("%s\n", strings[i]);
}
return 0;
}

View File

@ -1,6 +1,7 @@
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
<<<<<<< HEAD
int main(){ int main(){
char str[100]; char str[100];
char subStr[100]; char subStr[100];
@ -26,3 +27,43 @@ int main(){
return 0; return 0;
} }
=======
int main() {
char str1[200], str2[100];
int i, j, index;
printf("请输入主字符串:");
fgets(str1, sizeof(str1), stdin);
str1[strcspn(str1, "\n")] = '\0'; // 去除换行符
printf("请输入要插入的字符串:");
fgets(str2, sizeof(str2), stdin);
str2[strcspn(str2, "\n")] = '\0'; // 去除换行符
printf("请输入要插入的位置:");
scanf("%d", &index);
int len1 = strlen(str1);
int len2 = strlen(str2);
// 检查插入位置是否有效
if (index < 0 || index > len1) {
printf("插入位置无效\n");
return 1;
}
// 移动字符以腾出空间
for (i = len1; i >= index; i--) {
str1[i + len2] = str1[i];
}
// 插入 str2
for (j = 0; j < len2; j++) {
str1[index + j] = str2[j];
}
printf("插入后的字符串: %s\n", str1);
return 0;
}
>>>>>>> 1843d42e7e825deacd49772a204a39bc2f132820

View File

@ -1,3 +1 @@
## 上课笔记归档 ![bef8d22a5447da22e2b0](https://yp.smallkun.cn/markdown/b5d8f50f4cd00fbc6c6db024bb4fb66af047e03b45b239-qzQtTp!compress)
![img](https://yp.smallkun.cn/markdown/image-20250314075859050.png!compress)