2022年雪花算法的最大与最小值
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2022年雪花算法的最大与最小值相关的知识,希望对你有一定的参考价值。
参考技术A 最高1位固定值0。雪花算法,SnowFlake算法,是Twitter开源的分布式id生成算法。
其核心思想就是:使用一个64bit的long型的数字作为全局唯一id。最高1位固定值0,因为生成的id是正整数,如果是1就是负数了。
算法训练 最大值与最小值的计算
算法训练 最大值与最小值的计算
时间限制:1.0s 内存限制:512.0MB
输入11个整数,计算它们的最大值和最小值。
样例输入
0 1 2 3 4 5 6 7 8 9 10
样例输出
10 0
import java.util.Scanner; public class Main { public static void main(String[] args) { // TODO Auto-generated method stub Scanner sc=new Scanner(System.in); int temp; int min=1000000000; int max=-1000000; for(int i=0;i<11;i++){ temp=sc.nextInt(); if(temp>max) max=temp; if(temp<min) min=temp; } System.out.println(max+" "+min); } }
以上是关于2022年雪花算法的最大与最小值的主要内容,如果未能解决你的问题,请参考以下文章
雪花算法原理介绍及基于php的雪花算法(snowflake)