码迷,mamicode.com
首页 >  
搜索关键字:quick    ( 2274个结果
PAT Advanced 1101 Quick Sort (25分)
There is a classical process named partition in the famous quick sort algorithm. In this process we typically choose one element as the pivot. Then th ...
分类:其他好文   时间:2020-01-23 13:55:58    阅读次数:81
客户端生成二维码
一、二维码介绍 二维码的应用越来越多,开发中会经常使用,这里主要从二维码的介绍、客户端生成与服务器端生成三个方面讲解二维码。二维码又称二维条码,常见的二维码为QR Code,QR全称Quick Response,是一个近几年来移动设备上超流行的一种编码方式,它比传统的Bar Code条形码能存更多的 ...
分类:其他好文   时间:2020-01-22 18:44:07    阅读次数:128
centos7下mysql5.7的安装
1.通过yum repository安装,地址 "https://dev.mysql.com/downloads/repo/yum/" 2.下载rpm文件 3.可以参考 "https://dev.mysql.com/doc/mysql yum repo quick guide/en/" 安装mysq ...
分类:数据库   时间:2020-01-22 16:10:08    阅读次数:109
二分查找及基础排序
1 //冒泡排序 2 void bubbleSorte(int* arr, int len) 3 { 4 for (int i = 0; i < len - 1; i++) 5 { 6 for (int j = 0; j < len - 1 - i; j++) 7 { 8 if (arr[j] > ...
分类:编程语言   时间:2020-01-22 14:44:45    阅读次数:94
9.八大排序
一、冒泡排序: 1 package com.duan.array; 2 3 import java.util.Arrays; 4 //两两比较,大的往后边放,经过一轮比较,最大的元素就会出现在最后面。 5 public class BubbleSort { 6 public static void ...
分类:编程语言   时间:2020-01-21 18:23:51    阅读次数:63
列表排序
一. 列表查询 """要求:从列表中查询指定元素输入:列表,待查询元素输出:元素下标或未查找到元素方法: 1. 顺序查找 2. 二分查找(列表为升序)""" # 顺序查找 def linear_search(data_set, value): for i in range(len(data_set) ...
分类:编程语言   时间:2020-01-19 23:54:49    阅读次数:155
AtCoDeer and Election Report
问题 G: AtCoDeer and Election Report 时间限制: 1 Sec 内存限制: 128 MB[提交] [状态] 题目描述 AtCoDeer the deer is seeing a quick report of election results on TV. Two ca ...
分类:其他好文   时间:2020-01-18 19:45:21    阅读次数:120
快速乘法模板
求 a乘 b 对 p取模的值。 static long quick_multi(long a,long b,long m){ long res=0; while(b>0){ if((b&1)==1) res=(res+a)%m; b>>=1; a=(a+a)%m; } return res%m; } ...
分类:其他好文   时间:2020-01-18 14:34:18    阅读次数:65
JSFinder 一个从JS文件中获取url和子域名的工具
关于 JSFinder JSFinder is a tool for quickly extracting URLs and subdomains from JS files on a website. JSFinder是一款用作快速在网站的js文件中提取URL,子域名的工具。 提取URL的正则部分 ...
分类:Web程序   时间:2020-01-17 23:27:29    阅读次数:157
Apollo的快速入门
一、准备工作 1.1 Java Apollo服务端:1.8+ Apollo客户端:1.7+ 由于Quick Start会在本地同时启动服务端和客户端,所以需要在本地安装Java 1.8+。 在配置好后,可以通过如下命令检查: java -version 样例输出: java version "1.8 ...
分类:其他好文   时间:2020-01-17 11:40:50    阅读次数:586
2274条   上一页 1 ... 18 19 20 21 22 ... 228 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!