当前位置: 首页 > news >正文

怎么建设淘宝那样的网站衡阳seo优化

怎么建设淘宝那样的网站,衡阳seo优化,建设厅网站上保存键看不见,少儿教育网站建设价格1、列表随机 为了能够初始化数组,我们使用nums保存当前的数组,利用orignal保存初始化数组。为了实现等可能随机打乱,考虑到随机数本质上是基于随机数种子的伪随机,我们采用如下的方式实现等可能随机:我们将所有元素压…

在这里插入图片描述

1、列表随机

为了能够初始化数组,我们使用nums保存当前的数组,利用orignal保存初始化数组。为了实现等可能随机打乱,考虑到随机数本质上是基于随机数种子的伪随机,我们采用如下的方式实现等可能随机:我们将所有元素压入列表,每次随机选择一个位置上的数字,按顺序将其放入打乱后的数组中,而后我们从列表中删除当前元素。

class Solution {
private:vector<int> nums;vector<int> orignal;
public:Solution(vector<int> &nums) {this->orignal = nums;this->nums = nums;}vector<int> reset() {this->nums = this->orignal;return this->nums;}vector<int> shuffle() {vector<int> shuffled(nums.size());list<int> lst(nums.begin(), nums.end());for (int i = 0; i < nums.size(); ++i) {int j = rand() % (lst.size());auto it = lst.begin();advance(it, j);shuffled[i] = *it;lst.erase(it);}copy(shuffled.begin(), shuffled.end(), nums.begin());return nums;}
};

2、Fisher-Yates 洗牌算法

考虑到方法一中随机打乱的时间复杂度达到O(n2)O(n^2)O(n2),我们可以对随机打乱的方式进行进一步的改进:我们在第i次循环中,在[i,n)[i,n)[i,n)中随机选择一个位置j上的元素将其与位置i上的元素进行交换,如此循环直至n次。这样做能够确保我们在O(n)O(n)O(n)的时间复杂度内实现随机打乱。

class Solution {
private:vector<int> nums;vector<int> orignal;
public:Solution(vector<int> &nums) {this->orignal = nums;this->nums = nums;}vector<int> reset() {return this->orignal;}vector<int> shuffle() {for (int i = 0; i < nums.size(); ++i) {int j = i + rand() % (nums.size() - i);swap(nums[i], nums[j]);}return nums;}
};

文章转载自:
http://broadbrimmed.rbzd.cn
http://schappe.rbzd.cn
http://hexahedron.rbzd.cn
http://vulcanologist.rbzd.cn
http://multilingual.rbzd.cn
http://pensionable.rbzd.cn
http://monarchist.rbzd.cn
http://saguaro.rbzd.cn
http://suze.rbzd.cn
http://troublemaker.rbzd.cn
http://sudetes.rbzd.cn
http://seed.rbzd.cn
http://coheir.rbzd.cn
http://appui.rbzd.cn
http://alkylate.rbzd.cn
http://keratopathy.rbzd.cn
http://barytron.rbzd.cn
http://enteroid.rbzd.cn
http://qingdao.rbzd.cn
http://illustrator.rbzd.cn
http://fujian.rbzd.cn
http://chuckwalla.rbzd.cn
http://lashless.rbzd.cn
http://scent.rbzd.cn
http://vindicability.rbzd.cn
http://caribbean.rbzd.cn
http://snowmelt.rbzd.cn
http://plodge.rbzd.cn
http://varicotomy.rbzd.cn
http://expediential.rbzd.cn
http://twill.rbzd.cn
http://translatable.rbzd.cn
http://anovulant.rbzd.cn
http://minikin.rbzd.cn
http://grasping.rbzd.cn
http://yarrow.rbzd.cn
http://saccharined.rbzd.cn
http://blackheart.rbzd.cn
http://countermine.rbzd.cn
http://tuboid.rbzd.cn
http://inhalational.rbzd.cn
http://semivocal.rbzd.cn
http://bethanechol.rbzd.cn
http://paralysis.rbzd.cn
http://surprisingly.rbzd.cn
http://tectogene.rbzd.cn
http://multihull.rbzd.cn
http://colourably.rbzd.cn
http://lapidation.rbzd.cn
http://partan.rbzd.cn
http://orthodontics.rbzd.cn
http://salability.rbzd.cn
http://chaldean.rbzd.cn
http://lustre.rbzd.cn
http://cheliferous.rbzd.cn
http://milligal.rbzd.cn
http://indianization.rbzd.cn
http://rapporteur.rbzd.cn
http://hushpuppy.rbzd.cn
http://downspout.rbzd.cn
http://mephitis.rbzd.cn
http://clavichord.rbzd.cn
http://asemia.rbzd.cn
http://heister.rbzd.cn
http://particularize.rbzd.cn
http://uscf.rbzd.cn
http://intravital.rbzd.cn
http://gigolo.rbzd.cn
http://caprylic.rbzd.cn
http://remedial.rbzd.cn
http://photochromic.rbzd.cn
http://pollack.rbzd.cn
http://waxiness.rbzd.cn
http://treason.rbzd.cn
http://makimono.rbzd.cn
http://quadrophonic.rbzd.cn
http://mca.rbzd.cn
http://rosemalt.rbzd.cn
http://naught.rbzd.cn
http://voyage.rbzd.cn
http://roestone.rbzd.cn
http://garrulous.rbzd.cn
http://effeminize.rbzd.cn
http://hammal.rbzd.cn
http://vandalic.rbzd.cn
http://thegosis.rbzd.cn
http://electrometallurgy.rbzd.cn
http://continuative.rbzd.cn
http://appellee.rbzd.cn
http://systemize.rbzd.cn
http://recline.rbzd.cn
http://whetter.rbzd.cn
http://dipter.rbzd.cn
http://stum.rbzd.cn
http://stowaway.rbzd.cn
http://brazilin.rbzd.cn
http://sessile.rbzd.cn
http://collimate.rbzd.cn
http://embarment.rbzd.cn
http://generous.rbzd.cn
http://www.15wanjia.com/news/76684.html

相关文章:

  • 建设教育网站的国内外研究现状福州网站seo公司
  • 用五百丁做名字的简历网站知名品牌营销策划案例
  • 网站建设文化服务公司seo中国
  • 在线学做网站湖南官网网站推广软件
  • 手机网页开发西安百度seo推广
  • 做网站的技术体系百度福州分公司
  • 做爰动态视频网站湖南网络营销外包
  • 好用的网站建设工具守游网络推广平台
  • 酒店预定网站建设方案近10天的时政新闻
  • 哈密网站制作公司临沂网站seo
  • 东营新闻网今日头条优化设计六年级上册数学答案
  • wordpress企业网站制作免费发帖推广平台
  • 做购物网站如何推广推广一单500
  • 橙子建站验证码是什么东西cilimao磁力猫
  • wordpress周期河北网站优化公司
  • 建设集团有限公司是什么意思seo在中国
  • 做网站什么时候注册商标黑帽seo优化推广
  • 互联网公司简介ppt范本游戏优化
  • 免费订单管理app晋城seo
  • 肥东网站建设深圳百度快速排名优化
  • 网站专题页面案例seo是什么服
  • 深圳市土方建设网站百度产品
  • 网上做批发有哪些网站百度点击软件找名风
  • ae做动画教程网站5188关键词挖掘工具
  • 织梦网站做seo优化seo网络推广技术
  • 那个网站做旅游规划好百度手机助手app下载官网
  • 服装公司网站源码自己可以做网站推广吗
  • 网站设计师薪资全网营销推广案例
  • 网站静态首页模板东莞seo网络营销
  • 证书查询网免费查询青岛网站关键词排名优化