FCC-basic-algorithm解析
basic algorithm——javascript
happy coding.
本文为 freecodecamp 中前端的十六道基础算法题及解答。
basic algorithm——javascript reverse a string factorialize a number check for palindromes find the longest word in a string title case a sentence return largest numbers in arrays confirm the ending repeat a string repeat a string truncate a string chunky monkey slasher flick mutations falsy bouncer seek and destroy where do i belong caesars cipher
reverse a string
翻转字符串;先把字符串转化成数组,再借助数组的reverse方法翻转数组顺序,最后把数组转化成字符串。
你的结果必须得是一个字符串。
function reversestring(str) { return str.split('').reverse().join(""); } reversestring("hello");// olleh
factorialize a number
计算一个整数的阶乘;
如果用字母n来代表一个整数,阶乘代表着所有小于或等于n的整数的乘积。
阶乘通常简写成 n!
例如: 5! = 1 * 2 * 3 * 4 * 5 = 120
function factorialize(num) { if(num === 0) return 1; return num * factorialize(num - 1); }
check for palindromes
检查回文字符串
如果给定的字符串是回文,返回true,反之,返回false。
如果一个字符串忽略标点符号、大小写和空格,正着读和反着读一模一样,那么这个字符串就是palindrome(回文)。
注意你需要去掉字符串多余的标点符号和空格,然后把字符串转化成小写来验证此字符串是否为回文。
函数参数的值可以为"racecar","racecar"和"race car"。
function palindrome(str) { var newstr = str.replace(/[\w_]/g,"").tolowercase(); return newstr.split("").reverse().join("") === newstr; } palindrome("race car");// true
find the longest word in a string
找出最长单词:在句子中找出最长的单词,并返回它的长度。
函数的返回值应该是一个数字。
function findlongestword(str) { str = str.split(" ").sort(function(a, b){ return b.length > a.length; }); console.log(str); return str[0].length; } findlongestword("the quick brown fox jumped over the lazy dog");// 6
title case a sentence
句中单词首字母大写
确保字符串的每个单词首字母都大写,其余部分小写。
像’the’和’of’这样的连接符同理。
function titlecase(str) { return str.tolowercase().split(/\s+/ig).map(function(item, index){ return item.slice(0, 1).touppercase() + item.slice(1); }).join(' '); } titlecase("i'm a little tea pot");// "i'm a little tea pot
return largest numbers in arrays
找出多个数组中的最大数
右边大数组中包含了4个小数组,分别找到每个小数组中的最大值,然后把它们串联起来,形成一个新数组。
function largestoffour(arr) { return arr.map(function(item){ return math.max.apply(null, item); }); } largestoffour([[4, 5, 1, 3], [13, 27, 18, 26], [32, 35, 37, 39], [1000, 1001, 857, 1]]);// [27,5,39,1001]
confirm the ending
检查字符串结尾
判断一个字符串(str)是否以指定的字符串(target)结尾。
如果是,返回true;如果不是,返回false。
function confirmending(str, target) { return str.lastindexof(target) === str.length - target.length; } confirmending("bastian", "n"); // true
repeat a string repeat a string
重复输出字符串(重要的事情说3遍)
重复一个指定的字符串 num次,如果num是一个负数则返回一个空字符串。
function repeat(str, num) { return num > 0 ? new array(num+1).join(str) : ''; } repeat("abc", 3);// abcabcabc
truncate a string
截断字符串
(用瑞兹来截断对面的退路)
如果字符串的长度比指定的参数num长,则把多余的部分用...来表示。
切记,插入到字符串尾部的三个点号也会计入字符串的长度。
但是,如果指定的参数num小于或等于3,则添加的三个点号不会计入字符串的长度。
function truncate(str, num) { return num > 3 ? num >= str.length ? str : str.slice(0, num - 3) + '...' : str.slice(0, num) + '...'; } truncate("absolutely longer", 2);// ab...
chunky monkey
猴子吃香蕉, 分割数组
(猴子吃香蕉可是掰成好几段来吃哦)
把一个数组arr按照指定的数组大小size分割成若干个数组块。
例如:chunk([1,2,3,4],2)=[[1,2],[3,4]];
chunk([1,2,3,4,5],2)=[[1,2],[3,4],[5]];
function chunk(arr, size) { var newarr = [], i = 0; do{ newarr.push(arr.slice(i, i + size)); i = i + size; }while(i < arr.length); return newarr; } chunk(["a", "b", "c", "d"], 2);// [["a", "b"], ["c", "d"]].
slasher flick
截断数组
返回一个数组被截断n个元素后还剩余的元素,截断从索引0开始。
function slasher(arr, howmany) { return arr.length > howmany ? arr.slice(howmany, arr.length) : []; } slasher([1, 2, 3], 2);// [3]
mutations
比较字符串
(蛤蟆可以吃队友,也可以吃对手)
如果数组第一个字符串元素包含了第二个字符串元素的所有字符,函数返回true。
举例,["hello", "hello"]应该返回true,因为在忽略大小写的情况下,第二个字符串的所有字符都可以在第一个字符串找到。
["hello", "hey"]应该返回false,因为字符串”hello”并不包含字符”y”。
["alien", "line"]应该返回true,因为”line”中所有字符都可以在”alien”找到。
function mutation(arr) { return arr[1].tolowercase().split('').every(function(item){ return arr[0].tolowercase().indexof(item) !== -1; }); } mutation(["hello", "hey"]);// false
falsy bouncer
过滤数组假值
(真假美猴王)
删除数组中的所有假值。
在javascript中,假值有false、null、0、""、undefined 和 nan。
function bouncer(arr) { return arr.filter(function(item){ if(!!item) return item; }); } bouncer([7, "ate", "", false, 9]);
seek and destroy
摧毁数组
金克斯的迫击炮!
实现一个摧毁(destroyer)函数,第一个参数是待摧毁的数组,其余的参数是待摧毁的值。
function destroyer(arr) { var args = array.prototype.slice.call(arguments, 1); return arr.filter(function(item){ return args.join('').indexof(item) === -1; }); } destroyer([1, 2, 3, 1, 2, 3], 2, 3);
where do i belong
数组排序并找出元素索引
我身在何处?
先给数组排序,然后找到指定的值在数组的位置,最后返回位置对应的索引。
举例:where([1,2,3,4], 1.5) 应该返回 1。因为1.5插入到数组[1,2,3,4]后变成[1,1.5,2,3,4],而1.5对应的索引值就是1。
同理,where([20,3,5], 19) 应该返回 2。因为数组会先排序为 [3,5,20],19插入到数组[3,5,20]后变成[3,5,19,20],而19对应的索引值就是2。
function where(arr, num) { arr.sort(function(a, b){ return a - b; }); if(num === arr[0]) return 0; for(var i = 0; i < arr.length; i++){ if(num >= arr[i] && num <= arr[i + 1]) { return i + 1; } } return i; } where([3, 10, 5], 3); // 0j
caesars cipher
凯撒密码
(让上帝的归上帝,凯撒的归凯撒)
下面我们来介绍风靡全球的凯撒密码caesar cipher,又叫移位密码。
移位密码也就是密码中的字母会按照指定的数量来做移位。
一个常见的案例就是rot13密码,字母会移位13个位置。由’a’ ? ‘n’, ‘b’ ? ‘o’,以此类推。
写一个rot13函数,实现输入字符串,输出解密字符串。
所有的字母都是大写,不要转化任何非字母形式的字符(例如:空格,标点符号),遇到这些特殊字符,跳过它们。
function rot13(str) { return str.tolowercase().split('').map(function(item){ if(item.codepointat() >= 97 && item.codepointat() <= 122){ if(item.codepointat() + 13 > 122){ return string.fromcharcode(item.codepointat() - 13 ); } else { return string.fromcharcode(item.codepointat() + 13 ); } } else{ return item; } }).join('').touppercase(); } rot13("serr pbqr pnzc"); // free code camp rot13("serr cvmmn!");// free pizza!
上一篇: vue分页插件
下一篇: CSS3制作苹果风格键盘特效