登录
首页 » 算法 » Hangzhou University of Electronic Science and Technology ACM

Hangzhou University of Electronic Science and Technology ACM

于 2022-01-26 发布 文件大小:153.08 kB
0 148
下载积分: 2 下载次数: 1

代码说明:

杭州电子科技大学在线系统ACM的1050题,用贪心方法解决-Hangzhou University of Electronic Science and Technology ACM-line system of the 1050 title with a greedy solution

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 基于VC的FFT
    资源描述 Design a program to implement the 1-D FFT algorithm. Input: a vector. Get the testing data in file ‘Project_2_test’. Output: a vector, which is the discrete Fourier transform of the input. For example: Input: 3 8 10 12 Output: 33.0000+0.0000i -7.0000+4.0000i -7.0000+0.0000i -7.0000-4.0000i Requirements:
    2023-07-23 23:40:04下载
    积分:1
  • C读取wav文件
    输出wav文件的所有信息,输出size段,输出编码方式,输出声道数目,输出采样频率,输出每秒所需字节数,输出数据块对齐单位,输出每个采样所需bit数,/输出附加信息,输出
    2022-01-25 14:12:00下载
    积分:1
  • cpu 调度 fcfs sjf,RR,......
    cpu 调度算法使用六种调度算法先到送达,最短的工作,首先,没有抢占优先级与无抢占循环赛
    2022-02-10 05:22:38下载
    积分:1
  • 科学与工程数值计 1、本书附赠的光盘包含了本书中全部的源代码。使用时只需将相应的目录拷贝到您的硬盘中。 注意 拷贝到硬盘上的源文件的属性如果...
    科学与工程数值计算算法 1、本书附赠的光盘包含了本书中全部的源代码。使用时只需将相应的目录拷贝到您的硬盘中。 注意 拷贝到硬盘上的源文件的属性如果成为只读的,在编译之前应该将它们的属性改为可读写的。 2、光盘各目录中的内容如下所示: 光盘目录 内容说明 SourceChapterN 第N章的所有示例工程源程序 SourceClasses 本书所有算法类的源程序 SourceLib 集成本书所有算法的静态库文件 SourceDll 集成本书所有算法的动态库文件 -Science and Engineering numerical algorithm 1, this book comes with a CD-ROM contains all the book s source code. Simply use the corresponding copy of the directory to your hard drive. Note to copy the source files on your hard disk becomes read-only attribute in the compiler prior to their properties should be changed to read and write. 2, CD-ROM contents of the directory as follows: CD-ROM directory description SourceChapterN the first chapter all the examples of N source project SourceClasses algorithm book all types of source book SourceLib integrated all of the static algorithm library file SourceDll integrated all book algorithm for dynamic library files
    2023-08-03 22:30:03下载
    积分:1
  • 用乔里斯基(cholesky)求解对称正定方程组。
    用乔里斯基(cholesky)算法求解对称正定方程组。- (cholesky) the algorithm solves symmetrically with the tall Reese base is deciding the system of equations.
    2023-05-17 20:55:03下载
    积分:1
  • 远志网络还原大师号器的源码,看了就明白很粗糙的但毕竟能用。...
    远志网络还原大师算号器的源码,看了就明白很粗糙的算法但毕竟能用。-network reduction Chi master Suanhaoqi source code, read on to understand the algorithm is very rough but, after all, can be used.
    2023-03-15 12:20:03下载
    积分:1
  • 这是复数的加减源代码.使用C++在VC环境中实现.
    这是复数的加减法运算源代码.使用C++在VC环境中实现.-This is the plural of addition and subtraction operations source. The use of C in the VC environment to achieve.
    2022-01-26 01:24:52下载
    积分:1
  • C++下,最小二乘拟合曲线,进行线性拟合,多项式拟合和指数拟合
    C++下,最小二乘算法拟合曲线,进行线性拟合,多项式拟合和指数拟合, 所有代码在.h文件中, 只需要包含.h文件到qt工程, 调用接口就能使用拟合曲线函数接口, 亲测可用, 为了大家更好使用, 附上test.cpp, 是调用的大概步骤, 具体使用, 根据需要修改即可
    2023-03-10 18:20:03下载
    积分:1
  • c++设计学籍管理系统
    c++课程设计,里面包括源代码,本系统旨在实现一个小型的学籍管理系统,对于教务处管理人员来说,想要用电脑处理学籍的管理会十分方便,节省精力。然而他们的前期工作就是进行学籍的录入,删除,添加,修改,查阅,搜索,排序等等。如此显示明晰,操作简单的简易学籍管理系统开发出来是十分必要的,尤其会受到管理者们的欢迎。
    2022-10-26 16:05:03下载
    积分:1
  • //=== === === === === ==== === === === === === === =// letter Description// func...
    //=== === === === === === ===== //函数说明 //函数名称:Correlation //函数功能:计算最小二乘法拟合的多项式的相关系数 //使用方法:int M------ 拟合多项式的阶数(已知条件) // double *b--- 拟合曲线的系数,排列顺序为由高阶到低阶(已知条件) // double *x--- 结点x轴数据(已知条件) // double *y--- 结点y轴数据(已知条件) // double *Yg-- 结点估计值,个数为m(过程变量) // int m------ 结点个数(已知条件) //注意事项:多项式阶数最高为10,多项式的形式为 y = a0 + a1x +a2x2 -//=== === === === === ==== === === === === === === =// letter Description// function name : Correlation// Function functions : Calculation least squares polynomial fitting of the correlation coefficient// Use : int M------ polynomial fitting stage (known condition)//* b--- double fitting song The coefficient, Higher-order the order on grounds of low order (known condition)//* double-node x x axis data (known to be pieces)// double* y--- node y-axis data (known condition)//* double FSL-- Nodes estimates, Number m (process variables)// int m------ node number (known condition)// Note : polynomial order of a maximum of 10. polynomials in the
    2022-04-29 13:08:12下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载