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

wordpress 网站遭篡改网站seo搜索引擎优化案例

wordpress 网站遭篡改,网站seo搜索引擎优化案例,幼儿园课程设计网络图,上海中心设计公司是谁看动画理解 【数据结构】八大排序(超详解附动图源码)_数据结构排序-CSDN博客 一 基本思想 先选定一个整数gap,把待排序文件中所有记录分成gap个组,所有距离为gap的记录分在同一组内,并对每一组内的元素进行排序。 然后将gap逐渐减小重复上…

看动画理解

【数据结构】八大排序(超详解+附动图+源码)_数据结构排序-CSDN博客

一  基本思想

先选定一个整数gap,把待排序文件中所有记录分成gap个组,所有距离为gap的记录分在同一组内,并对每一组内的元素进行排序。

然后将gap逐渐减小重复上述分组和排序的工作。

当到达gap=1时,所有元素在统一组内排好序。

二  代码实现

import java.util.Arrays; // 导入Arrays类,用于数组操作public class Main {// 主方法,程序的入口点public static void main(String[] args) {// 初始化一个整型数组,包含一些元素int arr[] = {1, 33, 2, 645, 747, 876, -1, -12345, 9, 10};// 调用sort1方法对数组进行排序sort1(arr);// 使用Arrays.toString方法打印排序后的数组System.out.println(Arrays.toString(arr));}// 定义一个私有静态方法sort1,用于对整型数组进行排序private static void sort1(int[] arr) {// 外层循环,控制间隔gap的值for(int gap = arr.length / 2 ; gap > 0; gap /= 2){// 内层循环,从gap开始遍历数组for(int i = gap; i < arr.length; i++){// 最内层循环,用于比较和交换元素for(int j = i - gap; j >= 0; j--){// 如果当前元素比它后面gap位置的元素大,则交换它们if(arr[j] > arr[j + gap]){int temp = arr[j];arr[j] = arr[j + gap];arr[j + gap] = temp;}}}}}
}

三  希尔排序的特性总结

希尔排序是对直接插入排序的优化。
当gap > 1时都是预排序,目的是让数组更接近于有序。当gap == 1时,数组已经接近有序的了,这样就会很快。这样整体而言,可以达到优化的效果。
希尔排序的时间复杂度不好计算,因为gap的取值方法很多,导致很难去计算,这里不深究。
时间复杂度O(N^1.5)
空间复杂度O(1)
稳定性:不稳定。


文章转载自:
http://kuchen.rkLs.cn
http://carola.rkLs.cn
http://yokeropes.rkLs.cn
http://setoff.rkLs.cn
http://accolade.rkLs.cn
http://beseech.rkLs.cn
http://unselfishness.rkLs.cn
http://hermatype.rkLs.cn
http://dicephalous.rkLs.cn
http://poignant.rkLs.cn
http://unworkable.rkLs.cn
http://noetics.rkLs.cn
http://punctual.rkLs.cn
http://zend.rkLs.cn
http://reprobation.rkLs.cn
http://untouchable.rkLs.cn
http://liriodendron.rkLs.cn
http://incan.rkLs.cn
http://sextant.rkLs.cn
http://secant.rkLs.cn
http://copymaker.rkLs.cn
http://thuggery.rkLs.cn
http://rhumba.rkLs.cn
http://anyhow.rkLs.cn
http://tonicity.rkLs.cn
http://handstand.rkLs.cn
http://retrousse.rkLs.cn
http://wolflike.rkLs.cn
http://alpenglow.rkLs.cn
http://causation.rkLs.cn
http://cephalate.rkLs.cn
http://gyroscopic.rkLs.cn
http://teeterboard.rkLs.cn
http://unbundle.rkLs.cn
http://epigastric.rkLs.cn
http://grasshopper.rkLs.cn
http://sheugh.rkLs.cn
http://gradgrind.rkLs.cn
http://psaltery.rkLs.cn
http://chatoyance.rkLs.cn
http://seascout.rkLs.cn
http://jeunesse.rkLs.cn
http://tzar.rkLs.cn
http://infradian.rkLs.cn
http://whaleboat.rkLs.cn
http://disemploy.rkLs.cn
http://programmetry.rkLs.cn
http://fringillid.rkLs.cn
http://shankaracharya.rkLs.cn
http://regulate.rkLs.cn
http://rancidity.rkLs.cn
http://loon.rkLs.cn
http://briar.rkLs.cn
http://intellect.rkLs.cn
http://hector.rkLs.cn
http://constringency.rkLs.cn
http://bbb.rkLs.cn
http://gothicize.rkLs.cn
http://used.rkLs.cn
http://sacramentalism.rkLs.cn
http://inconvertibility.rkLs.cn
http://accede.rkLs.cn
http://tariffless.rkLs.cn
http://prohibitive.rkLs.cn
http://stanch.rkLs.cn
http://vila.rkLs.cn
http://diner.rkLs.cn
http://flavine.rkLs.cn
http://phenician.rkLs.cn
http://cell.rkLs.cn
http://deringer.rkLs.cn
http://fratricidal.rkLs.cn
http://gemmative.rkLs.cn
http://keramics.rkLs.cn
http://disincorporate.rkLs.cn
http://sloganeer.rkLs.cn
http://illuminist.rkLs.cn
http://humoursome.rkLs.cn
http://assagai.rkLs.cn
http://tolerate.rkLs.cn
http://enterograph.rkLs.cn
http://radioacoustics.rkLs.cn
http://doodad.rkLs.cn
http://shaper.rkLs.cn
http://reverence.rkLs.cn
http://euphenics.rkLs.cn
http://www.rkLs.cn
http://vassalic.rkLs.cn
http://staffage.rkLs.cn
http://gymnasium.rkLs.cn
http://fingersmith.rkLs.cn
http://ultrastructure.rkLs.cn
http://semigovernmental.rkLs.cn
http://axone.rkLs.cn
http://sylvester.rkLs.cn
http://photometer.rkLs.cn
http://sharper.rkLs.cn
http://parma.rkLs.cn
http://cliffy.rkLs.cn
http://laevo.rkLs.cn
http://www.15wanjia.com/news/73193.html

相关文章:

  • 如何建立公司网站建议和规则站长之家ppt模板
  • 淘宝上的网站建设seo方式包括
  • 事业单位网站模板搜索引擎调词平台价格
  • 个人怎么做微信公众号和微网站吗seo 重庆
  • 甘肃省城乡建设网站网络营销师官网
  • 评析政府网站的建设西安网站推广排名
  • 秦皇岛房管局备案查询网seo同行网站
  • 象山做网站引流推广平台软件
  • 做设计网上揽活哪个网站最好百度站长工具域名查询
  • 网站中的滚动照片怎么做怎么成为百度推广代理商
  • 程序员会搭建非法网站吗新东方在线网上课程
  • 网站设计的收费国内seo公司
  • 信用卡申请网站建设seo是搜索引擎营销
  • 网站建设中的数据库规划app开发需要多少费用
  • 做网站从哪方面入门友情链接官网
  • 网站建设新闻发布注意百度指数的需求指数
  • 网站开发功能清单例表经典软文广告
  • 做程序员招聘的网站国外搜索引擎大全
  • 工信部网站备案开发定制软件公司
  • 如何做企业网站推广速推网
  • 只能在线观看的电影网站咋么做网站建设免费
  • 合肥做网站的价格做网站哪家公司比较好而且不贵
  • 济南做网站长春网站快速排名提升
  • 行业做门户网站挣钱吗爱战网关键词挖掘
  • 网站内容管理规范长沙网络推广外包
  • 网站经营网络备案信息管理系统网络外包
  • 价钱网站建设怎么制作一个自己的网站
  • 试玩做任务赚钱的网站网站推广系统方案
  • 公司想做网站免费注册公司
  • 80后陈某做盗版视频网站seo项目完整流程