Csico 811-2无线路由器配置1、通过console 口进入设备,配置见下图2、配置用户,telnet 登录及enable密码。  enablepassword xxx  usernamexxx privilege 15 password 0 xxx  linevty 0 4  exec-timeout 10 10 password xxx login            
                
                    
                        
                                                            
                                                                        
                                                                                        原创
                                                                                    
                            2013-08-20 13:25:43
                            
                                7715阅读
                            
                                                        
                                点赞
                            
                                                                             
                 
                
                             
         
            
            
            
            第 i 个人的体重为 people[i],每艘船可以承载的最大重量为 limit。 每艘船最多可同时载两人,但条件是这些人的重量之和最多为 limit。 返回载到每一个人所需的最小船数。(保证每个人都能被船载)。 示例 1: 输入:people = [1,2], limit = 3 输出:1 解释: ...            
                
                    
                        
                                                            
                                                                        
                                                                                        转载
                                                                                    
                            2021-08-26 20:25:00
                            
                                68阅读
                            
                                                                                    
                                2评论
                            
                                                 
                 
                
                             
         
            
            
            
                         
                
                    
                        
                                                            
                                                                        
                                                                                        原创
                                                                                    
                            2021-09-05 21:15:27
                            
                                10000+阅读
                            
                                                                             
                 
                
                             
         
            
            
            
            The i-th person has weight people[i], and each boat can carry a maximum weight of limit. Each boat carries at most 2 people at the same time, provided            
                
                    
                        
                                                            
                                                                        
                                                                                        转载
                                                                                    
                            2019-01-24 11:29:00
                            
                                68阅读
                            
                                                                                    
                                2评论
                            
                                                 
                 
                
                             
         
            
            
            
            881. 救生艇            
                
                    
                        
                                                            
                                                                        
                                                                                        原创
                                                                                    
                            2023-05-15 16:44:15
                            
                                92阅读
                            
                                                                             
                 
                
                             
         
            
            
            
            给定两个非负整数(不含前导 00) A,BA,B,请你计算 A/BA/B 的商和余数。输入格式共两行,            
                
                    
                        
                                                            
                                                                        
                                                                                        原创
                                                                                    
                            2022-10-20 10:26:43
                            
                                68阅读
                            
                                                                             
                 
                
                             
         
            
            
            
            题目The i-th person has weight people[i], and each boat can carry a maximum weight of limit.Each boat carries at most 2 people at the same time, provided the sum of the weight of those people is at most            
                
         
            
            
            
            原题链接在这里:https://leetcode.com/problems/boats-to-save-people/ 题目: The i-th person has weight people[i], and each boat can carry a maximum weight of limi            
                
                    
                        
                                                            
                                                                        
                                                                                        转载
                                                                                    
                            2019-08-28 00:40:00
                            
                                91阅读
                            
                                                                                    
                                2评论
                            
                                                 
                 
                
                             
         
            
            
            
            LeetCode 881. 救生艇 题目描述 第 i 个人的体重为 people[i],每艘船可以承载的最大重量为 limit。 每艘船最多可同时载两人,但条件是这些人的重量之和最多为 limit。 返回载到每一个人所需的最小船数。(保证每个人都能被船载)。 示例 1: 输入:people = [1 ...            
                
                    
                        
                                                            
                                                                        
                                                                                        转载
                                                                                    
                            2021-08-28 20:49:00
                            
                                34阅读
                            
                                                                                    
                                2评论
                            
                                                 
                 
                
                             
         
            
            
            
            The i-th person has weight people[i], and each boat can carry a maximum weight of limit. Each boat carries at most 2 people at the same time, provided            
                
                    
                        
                                                            
                                                                        
                                                                                        转载
                                                                                    
                            2020-06-09 09:06:00
                            
                                70阅读
                            
                                                                                    
                                2评论
                            
                                                 
                 
                
                             
         
            
            
            
            截止到目前我已经写了 600多道算法题,其中部分已经整理成了pdf文档,目前总共有1000多页(并且还会不断的增加)            
                
                    
                        
                                                            
                                                                        
                                                                                        原创
                                                                                    
                            2021-11-11 10:27:17
                            
                                117阅读
                            
                                                                             
                 
                
                                
                     
                                    
                             
         
            
            
            
            1. 题目第 i 个人的体重为 people[i],每艘船可以承载的最大重量为 limit。每艘船最多可同时载两人,但条件是这些人的重量之和最多为 limit。返回载到每一个人所需的            
                
                    
                        
                                                            
                                                                        
                                                                                        转载
                                                                                    
                            2022-07-08 11:17:53
                            
                                47阅读
                            
                                                                             
                 
                
                             
         
            
            
            
            881. 救生艇 贪心,时间复杂度:\(O(nlogn)\) 先排序,然后每次尝试将当前质量最大的人和质量最小的人放一块。 class Solution { public: int numRescueBoats(vector<int>& people, int limit) { int res =  ...            
                
                    
                        
                                                            
                                                                        
                                                                                        转载
                                                                                    
                            2021-08-26 16:51:00
                            
                                67阅读
                            
                                                                                    
                                2评论
                            
                                                 
                 
                
                             
         
            
            
            
            第 i 个人的体重为 people[i],每艘船可以承载的最大重量为 limit。 每艘船最多可同时载两人,但条件是这些人的重量之和最多为 limit。 返回载到每一个人所需的最小船数。(保证每个人都能被船载)。 示例 1: 输入:people = [1,2], limit = 3输出:1解释:1  ...            
                
                    
                        
                                                            
                                                                        
                                                                                        转载
                                                                                    
                            2021-08-26 09:08:00
                            
                                98阅读
                            
                                                                                    
                                2评论
                            
                                                 
                 
                
                             
         
            
            
            
            DescriptionYou are given an array people where people[i] is the weight of the ith pers            
                
                    
                        
                                                            
                                                                        
                                                                                        原创
                                                                                    
                            2022-08-11 17:24:19
                            
                                30阅读
                            
                                                                             
                 
                
                             
         
            
            
            
            第 i 个人的体重为 people[i],每艘船可以承载的最大重量为 limit。 每艘船最多可同时载两人,但条件是这些人的重量之和最多为 limit。 返回载到每一个人所需的最小船数。(保证每个人都能被船载)。 示例 1: 示例 2: 示例 3: 提示: 1 <= people.length <=            
                
                    
                        
                                                            
                                                                        
                                                                                        转载
                                                                                    
                            2019-03-16 18:14:00
                            
                                178阅读
                            
                                                                                    
                                2评论
                            
                                                 
                 
                
                             
         
            
            
            
            前端布吉岛写在前面以前总是似懂非懂,这次总算把它弄了个清楚什么是PromiseES6 异步编程的一种解决方案,比传统的方案(回调函数和事件)更加的合理和强大好处 异步操作以同步操作的流程表达出来,避免了层层嵌套的回调函数promise可以解决异步的问题,本身不能说promise是异步的Promise特点对象的状态不受外界影响。Promise对象代表一个异步操作,有三种状态:pendin            
                
                    
                        
                                                            
                                                                        
                                                                                        转载
                                                                                    
                            2022-11-11 21:21:53
                            
                                68阅读
                            
                                                                             
                 
                
                                
                     
                                    
                             
         
            
            
            
            摘要:如果你决定参加PMP考试,为了快速通过考试拿到证书,我的建议是一定要重视刷题。PMBOK第六版官方教材900页,埋没在教材中真的会失去方向。多做模拟题、大量地刷题、形成PMP思维很重要,这样当你看题目时,不仅仅看答案的表面现象,更多会透过实质看本质,将思维与PMBOK同步,你就会很轻易做出答案。【软文头部自定义信息】1、A project manager suspects there is             
                
                    
                        
                                                            
                                                                        
                                                                                        原创
                                                                                    
                            2023-11-15 15:37:47
                            
                                77阅读
                            
                                                                             
                 
                
                             
         
            
            
            
            package leetcode; import java.util.Arrays; import java.util.Collections; /* Author:Samba Time :2021年8月26日 Data:下午2:08:25 */ //救生艇 public class t881 {  ...            
                
                    
                        
                                                            
                                                                        
                                                                                        转载
                                                                                    
                            2021-08-26 15:27:00
                            
                                104阅读
                            
                                                                                    
                                2评论
                            
                                                 
                 
                
                             
         
            
            
            
            电风扇红外遥控电路(KD880/881)            
                
                    
                        
                                                            
                                                                        
                                                                                        转载
                                                                                    
                            2008-08-05 10:48:04
                            
                                459阅读