c语言sscanf函数的用法是什么
269
2022-09-05
js贪心算法
export default (prices)=>{ //用来保存利润 let count=0 for(let i=0,len=prices.length;i
export default(intput)=>{ //表示自己的钱箱(用于存储零钱) let hand=[] //判断是否有顾客还在 while(Input.length){ //取出当前排在最前面顾客的钱 let money=inpuy.shift() if(money===5){ hand.push(money) }else{ //零钱降序排列 hand.sort((a,b)=>b-a) let change=money-5 for(let i=0,len=hand.length;i 动态规划: export default(arr,m,n)=>{ let dp=(m,n)=>{ //,=2,n=2 if(m===2&&n===2){ return(arr[1][1]===1||arr[1][0]+arr[0][1]===2)?0:(arr[1][0]===1||arr[0][1]===1)?1:2 }else if(m<2||n<2){ if(m<2){ //单行有1就返回0,没有1返回0 return arr[m-1].includes(1)?0:1 }else{ //单列中不能有障碍物(1) 有返回0 没有返回1 for(let i=0;i 查找两地最短距离 export default(src,dst,k)=>{ //对n个城市m个航班做飞行说明 let fights=[ [0,1,100], [1,2,100], [0,2,500] ] let cheap=(src,dst,k)=>{ let prev=fights.filter(item=>item[1]===dst) let min=Math.min.apply(null,prev.map(item=>{ //从dst往前找,找到了起始城市 if(item[0]===src&&k>-1){ return item[2] }else if(k===0&&item[0]!==src){ return Number.MAX_SAFE_INTEGER }else{ return item[2]+cheap(src,item[0],k-1) } })) return min } return cheap(src,dst,k)||-1} 数组的优缺点: 优先队列: 前缀树: 栈封装: function Stack(){ //栈中的属性 this.items=[] //栈的相关操作 1.将元素添加栈 2.从栈中取出元素 3.查看一下栈顶元素 4.判断栈是否为空 5.获取栈中元素的个数 6.toString方法 Stack.prototype.push=function(element){ this.items.push(element) } Stack.prototype.pop=function(){ return this.items.pop() } Stack.prototype.peek=function(){ return this.items[this.items.length-1] } Stack.prototype.isEmpty=function(){ return this.items.length===0 } Stack.prototype.size=function(){ return this.items.length } Stack.prototype.toString=function(){ var resultString='' for(var i=0;i //函数:十进制转二进制function dec2bin(decNumber){ //1.定义一个栈对象 var stack=new Stack() //2.循环操作 while(decNumber>0){ //2.1获取余数,并放入到栈中 stack.push(decNumber % 2) //2.获取整除后的结果,作为下一次运算的数字 decNumber=Math.floor(decNumber/2) } //3.从栈中取出0和1 var binaryString='' while(!stack.isEmpty()){ binaryString+=stack.pop() } return binaryString} 封装队列 //分装队列类function Queue(){ //1.属性 this.items=[] //2.方法 1.将元素添加到队列中 2.从队列中删除前端元素 3.查看前端的元素 4.查看队列是否为空 5.查看队列中元素的个数 6.toString()方法 Queue.prototype.enqueue=function(element){ this.items.push(element) } Queue.prototype.dequeue=function(){ return this.items.shift() } Queue.prototype.front=function(){ return this.items[0] } Queue.prototype.isEmpty=function(){ return this.items.length===0 } Queue.prototype.size=function(){ return this.items.length } Queue.prototype.toString=function(){ var resultString='' for(var i=0;i 丢手帕: function passGame(nameList,num){ var queue=new Queue() for(var i=0;i
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~