码迷,mamicode.com
首页 >  
搜索关键字:public    ( 82854个结果
基础的排序算法
简单梳理一下以前学过的排序算法 冒泡排序 平均时间复杂度:O(n²);稳定 比较相邻元素,如果前面的比后面大,就交换两个元素 每一对相邻元素做同样的比较,从开始第一对元素一直比到结尾,一轮结束最后的元素是最大的。 除了每轮比较出来的最大元素,对其他元素重复以上操作。 public void bubb ...
分类:编程语言   时间:2021-07-29 16:19:56    阅读次数:0
php对数字进行万。亿的转化
/** * 格式化数字 */ public function float_number($number){ $length = strlen($number); //数字长度 if($length > 8){ //亿单位 $str = substr_replace(strstr($number,su ...
分类:Web程序   时间:2021-07-28 21:33:14    阅读次数:0
Java栈的实现数组和链表
一、栈结构 栈是一种,先进后出,后进先出的数据结构,只有一端能够进行操作,是一种操作受限制的线形表 二、栈的实现 1. 通过数组实现 1 2 3 import java.util.Arrays; 4 5 //栈数组实现 6 public class ArrayStack { 7 //定义一个数组存储 ...
分类:编程语言   时间:2021-07-27 17:32:46    阅读次数:0
统一返回数据格式
1.定义返回码枚举 1 public interface ResultCode { 2 public static Integer SUCCESS = 20000; 3 public static Integer ERROR = 20001; 4 } 2. 创建结果类 1 @Data 2 publi ...
分类:其他好文   时间:2021-07-27 17:30:58    阅读次数:0
java注解
注解 anno1 package com.ding.anno1; /** * @Description TODO * @Author 丁帅帅 * @Date 21/07/24 23:41 * @Version 1.0 */ public class Fu { public void show(){ ...
分类:编程语言   时间:2021-07-26 16:52:58    阅读次数:0
【PostGIS】实时坐标-电子围栏-判断-(参考遥想公瑾当年postgres+socket.io+nodejs实时地图应用实践)
CREATE OR REPLACE FUNCTION "public"."process_t_gps"() RETURNS "pg_catalog"."trigger" AS $BODY$ DECLARE rec record; ewith record; BEGIN IF (TG_OP = 'DE ...
分类:Web程序   时间:2021-07-26 16:42:44    阅读次数:0
Leeetcode 221 最大正方形 DP
JAVA DP 反向: public final int maximalSquare(char[][] matrix) { int xLen = matrix.length, yLen = matrix[0].length, re = 0; int[][] cache = new int[xLen] ...
分类:其他好文   时间:2021-07-23 17:42:02    阅读次数:0
Unity常用音频操作类
using UnityEngine; using System.Collections; public class AudioPlay : MonoBehaviour { public static AudioPlay Instance; public AudioClip[] FuChuAudio; ...
分类:编程语言   时间:2021-07-21 17:40:35    阅读次数:0
ZooKeeper监听服务器节点动态上下线
需求 某分布式系统中,主节点可以有多台,可以动态上下线,任意一台客户端都能实时感知到主节点服务器的上下线。 设计 实现 public class DistributeServer { public static void main(String[] args) throws Exception { ...
分类:其他好文   时间:2021-07-21 17:32:52    阅读次数:0
传统方式实现Dao层
传统方式实现Dao层 1.结构图 2.controller package com.ding.controller; import com.ding.bean.Student; import com.ding.service.StudentService; import com.ding.servi ...
分类:其他好文   时间:2021-07-19 16:53:38    阅读次数:0
82854条   1 2 3 4 ... 8286 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!