<!-- 练习:自定义一个函数,对数组进行排序,要求排序后没有重复数据 -->
<script>function p(s){document.write(s);document.write("<br>");}function uniquel(arr){ var hash=[];for(var i =0;i<arr.length;i++){if(hash.indexOf(arr[i]) == -1){hash.push(arr[i]);}}return hash;}var x = new Array(1,3,4,5,7,7,4,5,6,7,7);p('数组x是'+x);var y = uniquel(x);p('使用sort进行自定义倒排序后的数组x是'+y);</script>
练习题 2
<!-- 关键字 newArray 创建数组对象 --><!--创建数组对象的3种方式:1.newArray() 创建长度是0的数组2.newArray(5) 创建长度是5的数组,但每一个元素都是undefine3.newArray(3,1,4,1,5,9,2,6) 根据参数创建数组
--><!--<script>function p(s,v){document.write(s +' '+ v);document.write("<br>");}var x =newArray();// 创建长度是0的数组p('通过newArray()创建一个空数组:',x);x =newArray(5);//创建长度是5的数组,但每一个元素都是indefinep('通过newArray(5)创建一个长度为5的数组',x);x =newArray(3,1,4,1,5,9,2,6);//根据参数创建数组p('创建有初始值的数组newArray(3,1,4,1,5,9,2,6)',x);</script>--><!-- 属性 length 数组长度 --><!--<script>function p(s){document.write(s);document.write("<br>");}var x =newArray(3,1,4,1,5,9,2,6);// 根据参数创建数组p('当前数组是'+x);p('通过.length获取当前数组的长度'+ x.length)</script>--><!--for// for in 遍历一个数组 --><!--遍历有两种方式:1.结合for循环,通过下标遍历2.使用增强for in循环遍历
--><!--<script>function p(s){document.write(s);document.write("<br>");}var x =newArray(3,1,4);p('当前数组是'+x);p("使用普通的for循环遍历数组");for(i=0;i<x.length;i++){p(x[i]);}p("使用增强for循环遍历数组");for(i in x){p(x[i]);}</script>--><!-- 方法concat 连接数组 --><!--<script>function p(s){document.write(s);document.write("<br>");}var x =newArray(3,1,4);var y =newArray(1,5,9);p('数组x是'+x);p('数组y是'+y);var z = x.concat(y);p('使用concat连接数组x和y');p('数组z是'+z);</script>--><!-- 方法join 通过指定分隔符,返回一个数组的字符串表达 --><!--<script>function p(s){document.write(s);document.write("<br>");}var x =newArray(3,1,4);p('数组x是'+x);var y = x.join();p('y = x.join()得到的是数组x的字符串表达。其值是'+y +"其类型是:"+(typeof y));var z = x.join("@");p('z=x.join("@")是x的字符串表达,但是分隔符不是默认的,是@'+z);</script>--><!-- 方法push插入数据 pop获取数据 分别在最后的位置和(获取后删除) --><!--<script>function p(s){document.write(s);document.write("<br>");}var x =newArray(3,1,4);p('数组x是'+x);x.push(5);p('向x中push 5,得到'+ x);var e = x.pop();p('从x中pop一个值出来,其值是'+e);p('pop之后,x数组的值是'+x);</script>--><!-- 方法unshift shift 分别在最开始的位置插入数据和获取数据(获取后删除) --><!--<script>function p(s){document.write(s);document.write("<br>");}var x =newArray(3,1,4);p('数组x是'+x);x.unshift(5);p('对数组unshift值加5,数组变为'+x);var e = x.shift();p('从数组中shift一个数,其值是'+e);p('shift之后,数组变为'+x);</script>--><!-- 方法sort 对数组内容进行排序 --><!--<script>function p(s){document.write(s);document.write("<br>");}var x =newArray(3,1,4,1,5,9,2,6);p('数组x是'+x);x.sort();p('使用sort排序后的数组x是'+x);d
</script>--><!-- 方法sort(comparator) 自定义排序算法 --><!--sort()默认正排序,即小的数排在前面。如果需要采用自定义排序的算法,就把比较器函数作为参数传递给sort()--><!--<script>function p(s){document.write(s);document.write("<br>");}function comparator(v1,v2){//比较器函数return v2-v1;}var x =newArray(3,1,4,1,5,9,2,6);p('数组x是'+x);x.sort(comparator);p('使用sort进行自定义倒排序后的数组x是'+x);</script>--><!-- 练习:自定义一个函数,对数组进行排序,要求排序后没有重复数据 --><!--<script>function p(s){document.write(s);document.write("<br>");}function uniquel(arr){var hash=[];for(var i =0;i<arr.length;i++){if(hash.indexOf(arr[i])==-1){hash.push(arr[i]);}}return hash;}var x =newArray(1,3,4,5,7,7,4,5,6,7,7);p('数组x是'+x);var y =uniquel(x);p('使用sort进行自定义倒排序后的数组x是'+y);</script>--><!-- 方法 reverse,对数组的内容进行反转 --><!--<script>function p(s){document.write(s);document.write("<br>");}var x =newArray(3,1,4,1,5,9,2,6);p('数组x是'+x);x.reverse();p('使用reverse函数进行反转后的值是:'+x);</script>--><!-- 方法slice获取子数组 注意:第二个参数取不到--><!--<script>function p(s){document.write(s);document.write("<br>");}var x =newArray(3,1,4,1,5,9,2,6);p('数组x是:'+x);var y = x.slice(1);p('x.slice(1)获取的子数组是:'+y);var z = x.slice(1,3);p('x.slice(1,3)获取的子数组是:'+z);p('第二个参数取不到');</script>--><!-- 方法splice用于删除数组中元素
而且同时还能向数组中插入元素 --><!--<script>function p(s){document.write(s);document.write("<br>");}var x =newArray(3,1,4,1,5,9,2,6);p('数组x是'+x);x.splice(3,2);p('x.splice (3,2) 表示从位置3开始 ,删除2个元素:'+x);x.splice(3,0,1,5);p('x.splice(3,0,1,5) 从位置3开始,删除0个元素,但是插入1和5,最后得到:'+x);</script>--><!--完成字符串替换功能--><html><script>function getValue(id){return document.getElementById(id).value;//获得不同id的多选框里输入的内容}function setValue(id,value){document.getElementById(id).value = value;//根据id修改不同多选框里的内容}function get1(){var text1 =getValue("text1");//获得第一个多选框里的结果var a =newArray();//新创建一个数组for(var i =0;i<text1.length;i++){var c = text1.charAt(i);//获得每个位置上的字符a.push(c);//把c里的内容加到空的数组a里面}a.sort();//对a中的内容进行排序var text2 = a.join("");// 把数组a的内容转换成字符串形式setValue("text2",text2);//把id为text2的文本框里填入text2里的内容a.reverse();//倒序输出var text3 = a.join("")setValue("text3",text3);}function get2(){var text1 =getValue("text1");//获得第一个多选框里的结果var a = text1.split(" ");//把第一个多选框里的字母用空格隔开a.sort();//对a中的内容进行排序var text2 = a.join(" ");//转为字符串类型setValue("text2",text2);//把id为text2的文本框里填入text2里的内容a.reverse();//倒序输出var text3 = a.join(" ")setValue("text3",text3);}</script><table border="0"><tr><td>随机输入英文字符串:</td><td><textarea id="text1"></textarea></td></tr><tr><td>正排序结果:</td><td><textarea id="text2"></textarea></td></tr><tr><td>倒排序结果:</td><td><textarea id="text3"></textarea></td></tr><tr><td></td><td><button onclick="get1()">按照字母排序</button></td></tr><tr><td></td><td></br><button onclick="get2()">按照单词排序</button></td></tr></table></html>
这里写自定义目录标题 【每日一道算法题】移除链表元素思路记录我的代码力扣官方题解递归迭代 【每日一道算法题】移除链表元素
力扣题目链接(opens new window)
给你一个链表的头节点 head 和一个整数 val ,请你删除链表中所有满足 Node.val val 的节点…