-
test26RemoveDuplicatesfromSortedArray
应用背景
Remove Duplicates from Sorted Array
Total Accepted: 69756 Total Submissions: 223981 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报 打分 发表评论 暂无评论 0 粉丝 0 发布 0 获赞 关注 查看主页 c++ 相关源码推荐 qt tcp客户端 0 0 暂无评分KC注释的源码 0 0 暂无评分Q4SDKSRC 0 0 暂无评分快速排序算法 0 0 暂无评分贪吃蛇游戏 0 0 暂无评分 介绍信息预览(0条)评论打分
- 2022-07-11 15:55:10下载
- 积分:1
-
achieved through hosting the numerical algorithm (linear equations)
通过托管实现的数值算法(线性方程组)-achieved through hosting the numerical algorithm (linear equations)
- 2022-04-25 04:17:27下载
- 积分:1
-
Ordinary and Partial Differential Equation Routines in C, C++, Fortran, Java, Ma...
Ordinary and Partial Differential Equation Routines in C, C++, Fortran, Java, Maple, and MATLAB
- 2022-03-20 04:40:00下载
- 积分:1
-
一个排序过程的演示
一个排序过程的演示- A arrangement process demonstration
- 2022-07-01 05:53:26下载
- 积分:1
-
contour of heat transfer
contour of heat transfer
- 2022-02-07 02:36:19下载
- 积分:1
-
基于C++的粒子滤波源程序
使用C++编写的粒子滤波程序源码,可以作为学习粒子滤波的资料。相比matlab编程,C++程序具有执行效率高,速度快等优点,希望大家对程序中的不足加以评价和改正
- 2022-05-09 02:38:14下载
- 积分:1
-
Iterative solution of equations Jacobi Gauss
用迭代法解方程组 Jacobi Gauss-Sedel SOW 超松弛迭代 各种技术的比较 数值实验报告-Iterative solution of equations Jacobi Gauss-Sedel SOW SOR numerical comparison of various techniques Experimental Report
- 2022-04-01 11:32:12下载
- 积分:1
-
对卡尔曼滤波的原理进行了详细的介绍。并且有具体的程序,可以进行学习和仿真!...
对卡尔曼滤波的原理进行了详细的介绍。并且有具体的程序,可以进行学习和仿真!-The principle of Kalman filtering was introduced in detail. And there is a specific process, can study and simulations!
- 2022-02-24 22:49:34下载
- 积分:1
-
大数运算库
大数运算库-Treasury operations of large numbers
- 2022-02-12 09:54:57下载
- 积分:1
-
新型GA算法
一种好的改进遗传算法function [opy,optimy]=GA(pt,gennum,psize)% 输入参数:% pt m*n的加工时间矩阵(n是工件数目,m是机器数目)由已知给的T矩阵,可得n=100,m=10% gennum 迭代的次数(代数)% psize 种群的规模大小%输出参数:% opy 最优的Makespan值pc=0.9;%交叉因子pm=0.1;%变异因子[m,n]=size(pt);current_gen=1;%current_gen means the current generationnewgen=zeros(psize,n+1); %mewgen is the new generation of the populationnewgen(1:psize,1:n)=rand(psize,n);%主种群初始化,0-1之间的随机数 %Generalize the initial groupfather=zeros(2,n); %father is used to store the two genes for crossover and mutation avgen=zeros(1,gennum); %avgen is the matrix of the average of all the generationsoptimx=zeros(1,n);optimy=ones(1,gennum);%Generalize the initial groupfor i=1:psize [Ya,pop(i,1:n)]=sort(newgen(i,1:n));%种群排序,实数编码转换为自然数编码 随机生成的0-1之间的小数进行排序然后取每个从小到大数对应的位置 newg
- 2022-03-18 14:25:18下载
- 积分:1