码迷,mamicode.com
首页 >  
搜索关键字:integer    ( 14932个结果
java冒泡排序算法
package test; public class BubbleSort { public void bubble(Integer[] array,int from,int end) { for(int k=1;k<end-from+1;k++) { for(int i=end-from;i>=k ...
分类:编程语言   时间:2021-05-24 00:31:25    阅读次数:0
Delphi UniCode转汉字(\u 格式)、汉字转UniCode(\u 格式)
Delphi UniCode转汉字(\u 格式)、汉字转UniCode(\u 格式) 1、UniCode转汉字 function UnicodeToChinese(sStr: string): string; var i: Integer; index: Integer; temp, top, la ...
分类:Windows程序   时间:2021-05-24 00:03:23    阅读次数:0
1822. Sign of the Product of an Array
There is a function signFunc(x) that returns: 1 if x is positive. -1 if x is negative. 0 if x is equal to 0. You are given an integer array nums. Let  ...
分类:其他好文   时间:2021-05-23 23:06:06    阅读次数:0
0745. Prefix and Suffix Search (H)
Prefix and Suffix Search (H) 题目 Design a special dictionary which has some words and allows you to search the words in it by a prefix and a suffix. Im ...
分类:其他好文   时间:2021-05-03 12:54:25    阅读次数:0
剑指offer-数组中的重复数组
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param numbers int整型一维数组 * @return int整型 */ public int du ...
分类:编程语言   时间:2021-05-03 12:09:56    阅读次数:0
java 删除list中符合条件的对象(几种方法,避免入坑)
一、首先list遍历方法有那么几种:使用for循环、iterator、还有就是lambda表达式循环 1、首先创建一个测试类 class User2{ Integer id; String name; public User2(Integer id, String name) { this.id = ...
分类:编程语言   时间:2021-04-30 12:02:56    阅读次数:0
plsql ORA-01439:要更改数据类型,则要修改的列必须为空
在plsql修改ASRS_TASKDETAIL_RV 表字段GRADE 类型时遇到报错:“ORA-01439:要更改数据类型,则要修改的列必须为空”。 是因为要修改字段的新类型和原来的类型不兼容。 --1、修改原字段名name为临时字段name_new; alter table ASRS_TASKD ...
分类:数据库   时间:2021-04-29 11:47:37    阅读次数:0
创建数据库和表
在项目的配置文件 settings.py 中, INSTALLED_APPS 配置项 加入如下内容 INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'dj ...
分类:数据库   时间:2021-04-29 11:45:56    阅读次数:0
Excel Sheet排序
Sub Sort_Sheets() Dim sCount As Integer, I As Integer, R As Integer ReDim Na(0) As String sCount = Sheets.Count For I = 1 To sCount ReDim Preserve Na( ...
分类:编程语言   时间:2021-04-27 14:27:14    阅读次数:0
47. 全排列 II(含重复数字的全排列)
与不含重复数字的全排列相比,在于: 排序; 添加对上一数字的判断 class Solution { LinkedList<List<Integer>> ans=new LinkedList<>(); LinkedList<Integer> path=new LinkedList<>(); boole ...
分类:其他好文   时间:2021-04-26 13:15:08    阅读次数:0
14932条   上一页 1 ... 5 6 7 8 9 ... 1494 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!