-
数据采集第三次作业-102302128吴建良
《数据采集与融合》第三次作业 学号: 102302128姓名: 吴建良 Gitee仓库地址: https://gitee.com/wujianliang9/2025-data-collection/tree/master/第三次作业 作业①:多线程爬取网站图片 一、核心思路与代码 1. MiniCr -
实验三
任务1: 源代码task1.cpp: #include "window.hpp" #include <iostream> void test(){ Window w("Demo"); w.add_button("add"); w.add_button("remove"); w.add_button( -
实验3
##实验任务1 #代码 1 #pragma once 2 3 #include <iostream> 4 #include <string> 5 6 class Button 7 { 8 public: 9 Button(const std::string& label_); 10 const st -
实验六
task4 1 #include <stdio.h> 2 #include <stdlib.h> 3 #define N 10 4 5 typedef struct { 6 char isbn[20]; 7 char name[80]; 8 char author[80]; 9 double sal -
102302109-胡贝贝-作业4
作业①: (1)实验内容及结果 熟练掌握 Selenium 查找HTML元素、爬取Ajax网页数据、等待HTML元素等内容。 使用Selenium框架+ MySQL数据库存储技术路线爬取“沪深A股”、“上证A股”、“深证A股”3个板块的股票数据信息。 核心代码: class StockDataSpi -
实验6
实验任务1: 源代码contestant.hpp 1 #pragma once 2 #include<iomanip> 3 #include<iostream> 4 #include<string> 5 6 struct Contestant{ 7 long id; 8 std::string na -
数据采集与融合技术大作业
食鲜配·智厨 这个项目属于哪个课程 https://edu.cnblogs.com/campus/fzu/2025DataCollectionandFusiontechnology 组名 风雨无组 项目名字及简介 食鲜配·智厨是一个基于Python 3.7+和Django 2.0.7的智能电商菜谱一 -
实验6
任务1: 源代码: contestant.hpp #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string name; // -
实验6作业
任务4 #include<stdio.h> #define N 10 typedef struct { char isbn[20]; char name[80]; char author[80]; double sales_price; int sales_count; }Book; void ou -
落山基唬人队-beta冲刺
这个作业属于哪个课程 https://edu.cnblogs.com/campus/fzu/202501SoftwareEngineering 这个作业要求在哪里 https://edu.cnblogs.com/campus/fzu/202501SoftwareEngineering/homewor -
实验5
实验任务1: 源代码: 点击查看publisher.cpp #include <iostream> #include <string> #include "publisher.hpp" // Publisher类:实现 Publisher::Publisher(const std::string & -
实验5
实验任务1: 源代码publisher.hpp 1 #pragma once 2 #include<string> 3 4 class Publisher{ 5 public: 6 Publisher(const std::string &name_=""); 7 virtual ~Publishe -
贪心算法解决 “选点问题”:策略、证明与思考
贪心算法解决 “选点问题”:策略、证明与思考 在算法学习中,贪心算法是一类 “局部最优导向全局最优” 的经典思想。本文以作业中的 “选点问题” 为例,详解贪心策略的设计、正确性证明,同时谈谈我对贪心算法的理解。 一、选点问题:问题分析与贪心策略 问题描述 数轴上有n个闭区间[a_i, b_i],要求 -
实验6
任务1: contestant.hpp #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string name; // 姓名 s -
数据采集与融合技术实践作业四
作业一: 代码: import requests import pymysql import time import json DB_HOST = 'localhost' DB_USER = 'root' DB_PASSWORD = '123456' # 【请在这里修改你的数据库密码】 DB_NAM -
实验5
任务1.1 1 #include <stdio.h> 2 #define N 5 3 4 void input(int x[], int n); 5 void output(int x[], int n); 6 void find_min_max(int x[], int n, int *pmin, -
高级程序语言第九次
这个作业属于:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业的要求:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15595 学号:102500416 姓名:王浩宇 第一题 第二题 第三题 第四题 -
实验五
一、试验任务一 验证性实验。综合应用组合、继承、多态实现出版物的分类管理。 1 #pragma once 2 3 #include <string> 4 5 // 发行/出版物类:Publisher (抽象类) 6 class Publisher { 7 public: 8 Publisher(co -
实验5
实验任务1 #include <stdio.h> #define N 5 void input(int x[],int n); void output(int x[],int n); void find_min_max(int x[],int n,int *pmin,int *pmax); int -
实验五
任务一: 1.源代码: (1)publisher.hpp: #pragma once #include <string> // 发行/出版物类:Publisher (抽象类) class Publisher { public: Publisher(const std::string &name_ =