二维码扫描利用ZBar实现

上次是根据系统的属性自己封装的一个二维码扫描,这次给大家介绍一下基于ZBar集成的类似于QQ二维码扫描界面的二维码扫描的效果。

                                                               最下方配有效果图哦!

首先,需要引入ZBar第三方库文件:

ZBarSDK

libqrencode

其次,利用ZBar集成二维码扫描需要引入的类库有:

libiconv.tbd

QuartzCore.framework

CoreVideo.framework

CoreMedia.framework

AVFoundation.framework

代码实现:

-(void)createView{

    //扫描页的背景图片

    UIImageView*bgImageView;

    if (self.view.frame.size.height<500) {

        UIImage*image= [UIImage imageNamed:@"qrcode_scan_bg_Green.png"];

        bgImageView=[[UIImageView alloc]initWithFrame:CGRectMake(0, 64, self.view.frame.size.width, self.view.frame.size.height-64-100)];

        bgImageView.contentMode=UIViewContentModeTop;

        bgImageView.clipsToBounds=YES;

        

        bgImageView.image=image;

        bgImageView.userInteractionEnabled=YES;

    }else if(self.view.frame.size.height<600){

        UIImage*image= [UIImage imageNamed:@"qrcode_scan_bg_Green_iphone5"];

        bgImageView=[[UIImageView alloc]initWithFrame:CGRectMake(0, 64, self.view.frame.size.width, self.view.frame.size.height-64-100)];

        bgImageView.contentMode=UIViewContentModeTop;

        bgImageView.clipsToBounds=YES;

        

        bgImageView.image=image;

        bgImageView.userInteractionEnabled=YES;

    }

    else if(self.view.frame.size.height<680){

        UIImage*image= [UIImage imageNamed:@"qrcode_scan_bg_Green_iphone6"];

        bgImageView=[[UIImageView alloc]initWithFrame:CGRectMake(0, 64, self.view.frame.size.width, self.view.frame.size.height-64-100)];

        bgImageView.contentMode=UIViewContentModeTop;

        bgImageView.clipsToBounds=YES;

        

        bgImageView.image=image;

        bgImageView.userInteractionEnabled=YES;

    }

    else{

        UIImage*image= [UIImage imageNamed:@"qrcode_scan_bg_Green_iphone6p"];

        bgImageView=[[UIImageView alloc]initWithFrame:CGRectMake(0, 64, self.view.frame.size.width, self.view.frame.size.height-64-100)];

        bgImageView.contentMode=UIViewContentModeTop;

        bgImageView.clipsToBounds=YES;

        

        bgImageView.image=image;

        bgImageView.userInteractionEnabled=YES;

    }

    [self.view addSubview:bgImageView];

    

    //扫描框下面的提示语

    if (self.view.frame.size.height<600) {

        UILabel * label = [[UILabel alloc] initWithFrame:CGRectMake(0, self.view.frame.size.height-200, self.view.frame.size.width, 40)];

        label.text = @"将取景框对准二维码,即可自动扫描。";

        label.font=[UIFont systemFontOfSize:12];

        label.textColor = [UIColor whiteColor];

        label.textAlignment = NSTextAlignmentCenter;

        label.lineBreakMode = NSLineBreakByWordWrapping;

        label.numberOfLines = 2;

        label.backgroundColor = [UIColor clearColor];

        [bgImageView addSubview:label];

 

    }else{

        UILabel * label = [[UILabel alloc] initWithFrame:CGRectMake(0, self.view.frame.size.height-300, self.view.frame.size.width, 40)];

        label.text = @"将取景框对准二维码,即可自动扫描。";

        label.font=[UIFont systemFontOfSize:17];

        label.textColor = [UIColor whiteColor];

        label.textAlignment = NSTextAlignmentCenter;

        label.lineBreakMode = NSLineBreakByWordWrapping;

        label.numberOfLines = 2;

        label.backgroundColor = [UIColor clearColor];

        [bgImageView addSubview:label];

 

    }

    //初始化扫描线

    //4s/5/5s

    if (self.view.frame.size.height<600) {

        _line = [[UIImageView alloc] initWithFrame:CGRectMake(self.view.frame.size.width/5.8, 50, 220, 2)];

    }

    else{

        //6/6s/6p

        _line = [[UIImageView alloc] initWithFrame:CGRectMake(self.view.frame.size.width/4.6, 50, 220, 2)];

    }

    

    _line.image = [UIImage imageNamed:@"qrcode_scan_light_green.png"];

    [bgImageView addSubview:_line];

    //下方相册

    UIImageView*scanImageView=[[UIImageView alloc]initWithFrame:CGRectMake(0, bgImageView.frame.size.height+64, self.view.frame.size.width, 100)];

    scanImageView.image=[UIImage imageNamed:@"qrcode_scan_bar.png"];

    scanImageView.userInteractionEnabled=YES;

    [self.view addSubview:scanImageView];

    NSArray*unSelectImageNames=@[@"qrcode_scan_btn_photo_nor.png",@"qrcode_scan_btn_flash_nor.png",@"qrcode_scan_btn_myqrcode_nor.png"];

    NSArray*selectImageNames=@[@"qrcode_scan_btn_photo_down.png",@"qrcode_scan_btn_flash_down.png",@"qrcode_scan_btn_myqrcode_down.png"];

    

    for (int i=0; i<unSelectImageNames.count; i++) {

        UIButton*button=[UIButton buttonWithType:UIButtonTypeCustom];

        [button setImage:[UIImage imageNamed:unSelectImageNames[i]] forState:UIControlStateNormal];

        [button setImage:[UIImage imageNamed:selectImageNames[i]] forState:UIControlStateHighlighted];

        button.frame=CGRectMake(self.view.frame.size.width/3*i, 0, self.view.frame.size.width/3, 100);

        [scanImageView addSubview:button];

        if (i==0) {

            [button addTarget:self action:@selector(pressPhotoLibraryButton:) forControlEvents:UIControlEventTouchUpInside];

        }

        if (i==1) {

            [button addTarget:self action:@selector(flashLightClick) forControlEvents:UIControlEventTouchUpInside];

        }

        if (i==2) {

            button.hidden=YES;

        }  

    }

    //假导航

    UIImageView*navImageView=[[UIImageView alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 64)];

    navImageView.image=[UIImage imageNamed:@"qrcode_scan_bar.png"];

    navImageView.userInteractionEnabled=YES;

    [self.view addSubview:navImageView];

    UILabel*titleLabel=[[UILabel alloc]initWithFrame:CGRectMake(self.view.frame.size.width/2-32,20 , 64, 44)];

    titleLabel.textColor=[UIColor whiteColor];

    titleLabel.text=@"扫一扫";

    [navImageView addSubview:titleLabel];

    //返回按钮

    UIButton*button = [UIButton buttonWithType:UIButtonTypeCustom];

    [button setImage:[UIImage imageNamed:@"qrcode_scan_titlebar_back_pressed@2x.png"] forState:UIControlStateHighlighted];

    [button setImage:[UIImage imageNamed:@"qrcode_scan_titlebar_back_nor.png"] forState:UIControlStateNormal];

    

    [button setFrame:CGRectMake(10,15, 48, 48)];

    [button addTarget:self action:@selector(pressCancelButton:) forControlEvents:UIControlEventTouchUpInside];

    [self.view addSubview:button];

    

    timer = [NSTimer scheduledTimerWithTimeInterval:2 target:self selector:@selector(animation1) userInfo:nil repeats:YES];

}

 

//扫描线的动画效果

-(void)animation1

{

        [UIView animateWithDuration:2 animations:^{

        if (self.view.frame.size.height<600) {

            _line.frame = CGRectMake(self.view.frame.size.width/5.8, self.view.frame.size.height/43*22, 220, 2);

        }else{

            _line.frame = CGRectMake(self.view.frame.size.width/4.6, self.view.frame.size.height/43*22, 220, 2);

        }

    }completion:^(BOOL finished) {

        [UIView animateWithDuration:2 animations:^{

            if (self.view.frame.size.height<600) {

                _line.frame = CGRectMake(self.view.frame.size.width/5.8, 50, 220, 2);

            }

            else{

                _line.frame = CGRectMake(self.view.frame.size.width/5.8, 50, 220, 2);

            }

        }];

    }];

}

//开启关闭闪光灯

-(void)flashLightClick{

    AVCaptureDevice * device = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo];

    

    if (device.torchMode==AVCaptureTorchModeOff) {

        //闪光灯开启

        [device lockForConfiguration:nil];

        [device setTorchMode:AVCaptureTorchModeOn];

    }else {

        //闪光灯关闭

        [device setTorchMode:AVCaptureTorchModeOff];

    }

}

 

- (void)viewDidLoad

{

    

    //相机界面的定制在self.view上加载即可

    BOOL Custom= [UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera];//判断摄像头是否能用

    if (Custom) {

        [self initCapture];//启动摄像头

    }

    [self createView];

    [super viewDidLoad];

    

}

#pragma mark 选择相册

- (void)pressPhotoLibraryButton:(UIButton *)button

{  if (timer) {

    [timer invalidate];

    timer=nil;

}

    _line.frame = CGRectMake(50, 50, 220, 2);

    num = 0;

    upOrdown = NO;

 

    UIImagePickerController *picker = [[UIImagePickerController alloc] init];

    picker.allowsEditing = YES;

    picker.delegate = self;

    picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;

    [self presentViewController:picker animated:YES completion:^{

        self.isScanning = NO;

        [self.captureSession stopRunning];

    }];

}

#pragma mark 点击取消

- (void)pressCancelButton:(UIButton *)button

{

    self.isScanning = NO;

    [self.captureSession stopRunning];

    

    self.ScanResult(nil,NO);

    if (timer) {

        [timer invalidate];

        timer=nil;

    }

    _line.frame = CGRectMake(50, 50, 220, 2);

    num = 0;

    upOrdown = NO;

    [self dismissViewControllerAnimated:YES completion:nil];

}

#pragma mark 开启相机

- (void)initCapture

{

    self.captureSession = [[AVCaptureSession alloc] init];

    

    AVCaptureDevice* inputDevice = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo];

    

    AVCaptureDeviceInput *captureInput = [AVCaptureDeviceInput deviceInputWithDevice:inputDevice error:nil];

    [self.captureSession addInput:captureInput];

    AVCaptureVideoDataOutput *captureOutput = [[AVCaptureVideoDataOutput alloc] init];

    captureOutput.alwaysDiscardsLateVideoFrames = YES;

    

    if (IOS7) {

        AVCaptureMetadataOutput*_output=[[AVCaptureMetadataOutput alloc]init];

        [_output setMetadataObjectsDelegate:self queue:dispatch_get_main_queue()];

        [self.captureSession setSessionPreset:AVCaptureSessionPresetHigh];

        [self.captureSession addOutput:_output];

        _output.metadataObjectTypes =@[AVMetadataObjectTypeQRCode];

        

        if (!self.captureVideoPreviewLayer) {

            self.captureVideoPreviewLayer = [AVCaptureVideoPreviewLayer layerWithSession:self.captureSession];

        }

        // NSLog(@"prev %p %@", self.prevLayer, self.prevLayer);

        self.captureVideoPreviewLayer.frame = self.view.bounds;

        self.captureVideoPreviewLayer.videoGravity = AVLayerVideoGravityResizeAspectFill;

        [self.view.layer addSublayer: self.captureVideoPreviewLayer];

        self.isScanning = YES;

        [self.captureSession startRunning];

    }else{

        [captureOutput setSampleBufferDelegate:self queue:dispatch_get_main_queue()];

        

        NSString* key = (NSString *)kCVPixelBufferPixelFormatTypeKey;

        NSNumber* value = [NSNumber numberWithUnsignedInt:kCVPixelFormatType_32BGRA];

        NSDictionary *videoSettings = [NSDictionary dictionaryWithObject:value forKey:key];

        [captureOutput setVideoSettings:videoSettings];

        [self.captureSession addOutput:captureOutput];

        

        NSString* preset = 0;

        if (NSClassFromString(@"NSOrderedSet") && // Proxy for "is this iOS 5" ...

            [UIScreen mainScreen].scale > 1 &&

            [inputDevice

             supportsAVCaptureSessionPreset:AVCaptureSessionPresetiFrame960x540]) {

                // NSLog(@"960");

                preset = AVCaptureSessionPresetiFrame960x540;

            }

        if (!preset) {

            // NSLog(@"MED");

            preset = AVCaptureSessionPresetMedium;

        }

        self.captureSession.sessionPreset = preset;

        

        if (!self.captureVideoPreviewLayer) {

            self.captureVideoPreviewLayer = [AVCaptureVideoPreviewLayer layerWithSession:self.captureSession];

        }

        // NSLog(@"prev %p %@", self.prevLayer, self.prevLayer);

        self.captureVideoPreviewLayer.frame = self.view.bounds;

        self.captureVideoPreviewLayer.videoGravity = AVLayerVideoGravityResizeAspectFill;

        [self.view.layer addSublayer: self.captureVideoPreviewLayer];

        

        self.isScanning = YES;

        [self.captureSession startRunning];

     }

}

- (UIImage *) imageFromSampleBuffer:(CMSampleBufferRef) sampleBuffer

{

    CVImageBufferRef imageBuffer = CMSampleBufferGetImageBuffer(sampleBuffer);

    // Lock the base address of the pixel buffer

    CVPixelBufferLockBaseAddress(imageBuffer,0);

    

    // Get the number of bytes per row for the pixel buffer

    size_t bytesPerRow = CVPixelBufferGetBytesPerRow(imageBuffer);

    // Get the pixel buffer width and height

    size_t width = CVPixelBufferGetWidth(imageBuffer);

    size_t height = CVPixelBufferGetHeight(imageBuffer);

    

    // Create a device-dependent RGB color space

    CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();

    if (!colorSpace)

    {

        NSLog(@"CGColorSpaceCreateDeviceRGB failure");

        return nil;

    }

    // Get the base address of the pixel buffer

    void *baseAddress = CVPixelBufferGetBaseAddress(imageBuffer);

    // Get the data size for contiguous planes of the pixel buffer.

    size_t bufferSize = CVPixelBufferGetDataSize(imageBuffer);

    

    // Create a Quartz direct-access data provider that uses data we supply

    CGDataProviderRef provider = CGDataProviderCreateWithData(NULL, baseAddress, bufferSize,NULL);

    // Create a bitmap image from data supplied by our data provider

    CGImageRef cgImage =

    CGImageCreate(width,height,8,32,bytesPerRow,colorSpace,kCGImageAlphaNoneSkipFirst |kCGBitmapByteOrder32Little,provider,NULL,true,kCGRenderingIntentDefault);

    CGDataProviderRelease(provider);

    CGColorSpaceRelease(colorSpace);

    // Create and return an image object representing the specified Quartz image

    UIImage *image = [UIImage imageWithCGImage:cgImage];

  return image;

}

 #pragma mark 对图像进行解码

- (void)decodeImage:(UIImage *)image

{

    self.isScanning = NO;

    ZBarSymbol *symbol = nil;

    ZBarReaderController* read = [ZBarReaderController new];

    read.readerDelegate = self;

    CGImageRef cgImageRef = image.CGImage;

    for(symbol in [read scanImage:cgImageRef])break;

    if (symbol!=nil) {

        if (timer) {

            [timer invalidate];

            timer=nil;

        }

        _line.frame = CGRectMake(50, 50, 220, 2);

        num = 0;

        upOrdown = NO;

        self.ScanResult(symbol.data,YES);

        [self.captureSession stopRunning];

        [self dismissViewControllerAnimated:YES completion:nil];

    }else{

        timer = [NSTimer scheduledTimerWithTimeInterval:2 target:self selector:@selector(animation1) userInfo:nil repeats:YES];

        num = 0;

        upOrdown = NO;

        self.isScanning = YES;

        [self.captureSession startRunning];

        }

 }

#pragma mark - AVCaptureVideoDataOutputSampleBufferDelegate

- (void)captureOutput:(AVCaptureOutput *)captureOutput didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer fromConnection:(AVCaptureConnection *)connection

{

    UIImage *image = [self imageFromSampleBuffer:sampleBuffer];

    

    [self decodeImage:image];

}

#pragma mark AVCaptureMetadataOutputObjectsDelegate//IOS7下触发

- (void)captureOutput:(AVCaptureOutput *)captureOutput didOutputMetadataObjects:(NSArray *)metadataObjects fromConnection:(AVCaptureConnection *)connection

{

  if (metadataObjects.count>0)

    {

        AVMetadataMachineReadableCodeObject * metadataObject = [metadataObjects objectAtIndex:0];

        self.ScanResult(metadataObject.stringValue,YES);

    }

    [self.captureSession stopRunning];

    _line.frame = CGRectMake(50, 50, 220, 2);

    num = 0;

    upOrdown = NO;

    [self dismissViewControllerAnimated:YES completion:nil];

}

#pragma mark - UIImagePickerControllerDelegate

 - (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info

{

    if (timer) {

        [timer invalidate];

        timer=nil;

    }

    _line.frame = CGRectMake(50, 50, 220, 2);

    num = 0;

    upOrdown = NO;

    UIImage *image = [info objectForKey:@"UIImagePickerControllerEditedImage"];

    [self dismissViewControllerAnimated:YES completion:^{[self decodeImage:image];}];

}

//相册取消

- (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker

{

    if (timer) {

        [timer invalidate];

        timer=nil;

    }

    _line.frame = CGRectMake(50, 50, 220, 2);

    num = 0;

    upOrdown = NO;

    timer = [NSTimer scheduledTimerWithTimeInterval:2 target:self selector:@selector(animation1) userInfo:nil repeats:YES];

    [self dismissViewControllerAnimated:YES completion:^{

        self.isScanning = YES;

        [self.captureSession startRunning];

    }];

}

 #pragma mark - DecoderDelegate

+(NSString*)zhengze:(NSString*)str

{

      NSError *error;

    //http+:[^\\s]* 这是检测网址的正则表达式

    NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"http+:[^\\s]*" options:0 error:&error];//筛选

        if (regex != nil) {

        NSTextCheckingResult *firstMatch = [regex firstMatchInString:str options:0 range:NSMakeRange(0, [str length])];

        if (firstMatch) {

            NSRange resultRange = [firstMatch rangeAtIndex:0];

            //从urlString中截取数据

            NSString *result1 = [str substringWithRange:resultRange];

            NSLog(@"正则表达后的结果%@",result1);

            return result1;            

        }

    }

    return nil;

}

 

 

效果图:

 

开灯可以打开系统的手电筒,相册可以进入系统相册,如果选择的图片中包含有二维码,既可以自动扫描!

 

如有问题可以评论提问,有评必回!!!

2015最后一天,祝大家新年快乐!记得给个赞哦^_^

 

转载于:https://www.cnblogs.com/MasterPeng/p/5091630.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/471230.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

十二、一篇文章帮助你快速读懂MySQL索引(B树、B+树详解)

2. 索引 2.1 索引概述 MySQL官方对索引的定义为&#xff1a;索引&#xff08;index&#xff09;是帮助MySQL高效获取数据的数据结构&#xff08;有序&#xff09;。在数据之外&#xff0c;数据库系统还维护者满足特定查找算法的数据结构&#xff0c;这些数据结构以某种方式引…

LeetCode 2157. 字符串分组(状态压缩+位运算+图的遍历)

文章目录1. 题目2. 解题1. 题目 给你一个下标从 0 开始的字符串数组 words 。 每个字符串都只包含 小写英文字母 。words 中任意一个子串中&#xff0c;每个字母都至多只出现一次。 如果通过以下操作之一&#xff0c;我们可以从 s1 的字母集合得到 s2 的字母集合&#xff0c;…

JavaScript+ Canvas开发趣味小游戏《贪吃蛇》

一、效果展示 二、《贪吃蛇》基本实现思路 蛇头部分蛇身体部分&#xff1a;采用对象形式来存储坐标&#xff0c;并将每个坐标对象放到一个snake数组中&#xff0c;方便使用。设置每个方格宽度30px,高度30px&#xff0c;画布高度600px&#xff0c;宽度600px。 a.新蛇头newHead等…

LeetCode 2160. 拆分数位后四位数字的最小和

文章目录1. 题目2. 解题1. 题目 给你一个四位 正 整数 num 。请你使用 num 中的 数位 &#xff0c;将 num 拆成两个新的整数 new1 和 new2 。 new1 和 new2 中可以有 前导 0 &#xff0c;且 num 中 所有 数位都必须使用。 比方说&#xff0c;给你 num 2932 &#xff0c;你拥…

我的世界怎么设置服务器维护中,我的世界服务器

发布时间&#xff1a;2016-08-26我的世界游戏中我们会遇到关于服务器的问题,怎么对服务器进行重启呢?今天跟大家介绍的这款我的世界工具是一款比较实用的辅助,可以检测服务器状态,而且有查找问题和快速重启服务器的功能,需要的小伙伴请看看下面的我的世界服务器怎么 ...标签&a…

LeetCode 2161. 根据给定数字划分数组

文章目录1. 题目2. 解题1. 题目 给你一个下标从 0 开始的整数数组 nums 和一个整数 pivot 。 请你将 nums 重新排列&#xff0c;使得以下条件均成立&#xff1a; 所有小于 pivot 的元素都出现在所有大于 pivot 的元素 之前 。所有等于 pivot 的元素都出现在小于和大于 pivot …

一、人工智能数学基础——线性代数

01 向量空间 1.1定义和例子 1.2向量及其运算 1.3向量组的线性组合 1.4向量组的线性相关性 02 内积和范数 2.1内积的定义 2.2范数的定义 2.3内积的几何解释 03矩阵和线性变换 3.1定义和例子 3.2线性变换 线性空间中的运动&#xff0c;被称为线性变换。线性空间中的一个向量变…

LeetCode 2162. 设置时间的最少代价(枚举)

文章目录1. 题目2. 解题1. 题目 常见的微波炉可以设置加热时间&#xff0c;且加热时间满足以下条件&#xff1a; 至少为 1 秒钟。至多为 99 分 99 秒。 你可以 最多 输入 4 个数字 来设置加热时间。 如果你输入的位数不足 4 位&#xff0c;微波炉会自动加 前缀 0 来补足 4 位…

八、操作系统——基本分页存储管理的基本概念(详解)

一、思考&#xff1a;连续分配方式的缺点&#xff1f; 考虑支持多道程序的两种连续分配方式&#xff1a; 固定分区分配&#xff1a;缺乏灵活性&#xff0c;会产生大量的内部碎片&#xff0c;内存的利用率很低。动态分区分配&#xff1a;会产生很多外部碎片&#xff0c;虽然可以…

oracle 查看服务器密码修改,如何修改oracle用户密码

修改oracle用户密码的方法&#xff1a;首先连接oracle数据库所在服务器&#xff0c;并进入oracle控制台&#xff1b;然后输入“select username from dba_users”查看用户列表&#xff1b;最后输入修改用户口令即可。本教程操作环境&#xff1a;windows7系统、oracle版&#xf…

计算机组成原理——校验码(奇偶校验码、汉明校验码、循环冗余校验码)

一、为什么要使用校验码&#xff1f; 数据在计算机系统内加工、存取和传送的过程中可能会产生错误。为了减少和避免这类错误&#xff0c;引入了数据校验码。数据校验码是一种常用的带有发现某些错误&#xff0c;甚至带有一定自动改错能力的数据编码方法。 例子&#xff1a; …

(转)基因芯片数据GO和KEGG功能分析

随着人类基因组计划(Human Genome Project)即全部核苷酸测序的即将完成&#xff0c;人类基因组研究的重心逐渐进入后基因组时代(Postgenome Era)&#xff0c;向基因的功能及基因的多样性倾斜。通过对个体在不同生长发育阶段或不同生理状态下大量基因表达的平行分析&#xff0c;…

LeetCode 2164. 对奇偶下标分别排序

文章目录1. 题目2. 解题1. 题目 给你一个下标从 0 开始的整数数组 nums 。根据下述规则重排 nums 中的值&#xff1a; 按 非递增 顺序排列 nums 奇数下标 上的所有值。 举个例子&#xff0c;如果排序前 nums [4,1,2,3] &#xff0c;对奇数下标的值排序后变为 [4,3,2,1] 。奇…

九、操作系统——基本地址变换机构(详解)

一、概览 重点理解、记忆基本地址变换机构&#xff08;用于实现逻辑地址到物理地址转换的一组硬件机构&#xff09;的原理和流程 二、基本地址变换机构 基本地址变换机构可以借助进程的页表将逻辑地址转换为物理地址。 通常会在系统中设置一个页表寄存器&#xff08;PTR&am…

客户端显示服务器图片不显示,客户端请求服务器图片不显示

客户端请求服务器图片不显示 内容精选换一换已成功登录鲲鹏代码迁移工具。只有管理员用户(portadmin)可以执行生成CSR文件、导入web服务器证书、重启和更换工作密钥的操作。普通用户只能查看web服务端证书信息。SSL证书通过在客户端浏览器和web服务器之间建立一条SSL安全通道(访…

LeetCode 2165. 重排数字的最小值(计数)

文章目录1. 题目2. 解题1. 题目 给你一个整数 num 。重排 num 中的各位数字&#xff0c;使其值 最小化 且不含 任何 前导零。 返回不含前导零且值最小的重排数字。 注意&#xff0c;重排各位数字后&#xff0c;num 的符号不会改变。 示例 1&#xff1a; 输入&#xff1a;nu…

优酷路由宝无线服务器,优酷路由宝一站式刷潘多拉!!!整理版

本帖最后由 louis000 于 2015-11-3 14:57 编辑优酷路由宝L1W刷潘多拉固件-整理优化版准备工作&#xff1a;使用有线连接路由宝和电脑&#xff1b;电脑网络连接设置为手动获取IP地址。---------------------------------------------------------------------------------------…

LeetCode 2166. 设计位集(Bitset)

文章目录1. 题目2. 解题1. 题目 位集 Bitset 是一种能以紧凑形式存储位的数据结构。 请你实现 Bitset 类。 Bitset(int size) 用 size 个位初始化 Bitset &#xff0c;所有位都是 0 。void fix(int idx) 将下标为 idx 的位上的值更新为 1 。如果值已经是 1 &#xff0c;则不…

Web框架——Flask系列之Flask简介(一)

一、Web应用程序作用 Web(World Wide Web)诞生最初的目的,是为了利用互联网交流工作文档 二、关于Web框架 &#xff08;一&#xff09;什么是Web框架&#xff1f; 已经封装好了一段代码,协助程序快速开发,相当于项目半成品开发者只需要按照框架约定要求,在指定位置写上自己…

服务器系统网卡驱动装不上,网卡驱动装不上去怎么办?

满意答案hgtn1q6xvv52014.09.28采纳率&#xff1a;58% 等级&#xff1a;13已帮助&#xff1a;9534人现提示原: SP2更考虑安全问题IP设置自获取其实DHCP服务器获取IP及相关参数程能由于某种原没完. SP1代种情况操作系统防止脱网(微软写)自作主张网卡设置169.x.x.x保留IP作任何…