摘要: package com.attendance1.service; // EmployeeService.java - 员工管理服务 @Service public class EmployeeService { @Autowired private EmployeeMapper employeeMa 阅读全文
posted @ 2025-12-29 19:41 Cx330。 阅读(2) 评论(0) 推荐(0)
摘要: CREATE TABLE attendance_record ( id INT AUTO_INCREMENT PRIMARY KEY COMMENT '序号', attendance_time DATETIME NOT NULL COMMENT '考勤时间', job_id VARCHAR(10) 阅读全文
posted @ 2025-12-29 19:40 Cx330。 阅读(2) 评论(0) 推荐(0)
摘要: CREATE TABLE department ( department_id VARCHAR(2) PRIMARY KEY COMMENT '部门编码,两位数字', department_name VARCHAR(50) UNIQUE NOT NULL COMMENT '部门名称' ) COMME 阅读全文
posted @ 2025-12-29 19:40 Cx330。 阅读(4) 评论(0) 推荐(0)
摘要: 《代码大全》第九部分作为全书的收官之章,升华出 “编程之道” 的核心内涵,为我们揭示了程序员的匠人之魂。这一部分不再局限于具体的技术和方法,而是从哲学和思想的高度,探讨了编程的本质和程序员的职业追求。读完这一部分,我仿佛经历了一次心灵的洗礼,对编程这份职业有了全新的认知和敬畏之心。 编程之道,首先是 阅读全文
posted @ 2025-12-27 21:03 Cx330。 阅读(4) 评论(0) 推荐(0)
摘要: include include include using namespace std; struct Chocolate{ int h,w; }; int main(){ int N,K; cin>>N>>K; vectorchocs(N); int max_s=0; for(int i=0;i< 阅读全文
posted @ 2025-12-25 21:05 Cx330。 阅读(2) 评论(0) 推荐(0)
摘要: include include using namespace std; struct TreeNode{ char val; TreeNode* left; TreeNode* right; TreeNode(char x):val(x),left(nullptr),right(nullptr){ 阅读全文
posted @ 2025-12-25 08:53 Cx330。 阅读(2) 评论(0) 推荐(0)
摘要: include include include using namespace std; struct TreeNode{ char val; TreeNode* left; TreeNode* right; TreeNode(char c):val(c),left(nullptr),right(n 阅读全文
posted @ 2025-12-25 08:38 Cx330。 阅读(6) 评论(0) 推荐(0)
摘要: include include using namespace std; int main() { int a1, a2, n; cin >> a1 >> a2 >> n; vector seq; seq.push_back(a1); if (n > 1) { seq.push_back(a2); 阅读全文
posted @ 2025-12-22 08:17 Cx330。 阅读(6) 评论(0) 推荐(0)
摘要: include include using namespace std; int main() { int N, M; cin >> N >> M; cin.ignore(); string problems[30]; for (int i = 0; i < N; ++i) { getline(ci 阅读全文
posted @ 2025-12-22 08:17 Cx330。 阅读(4) 评论(0) 推荐(0)
摘要: include include include include using namespace std; // 消除多余空格、处理首尾空格和标点前空格 string cleanSpaces(const string &s) { string res = regex_replace(s, regex( 阅读全文
posted @ 2025-12-22 08:16 Cx330。 阅读(2) 评论(0) 推荐(0)