码迷,mamicode.com
首页 >  
搜索关键字:reverse integer    ( 19410个结果
写接口练习题
create table TbStudent(stuid integer not null,stuname varchar(20) not null,stusex bit default 1,stubirth datetime not null,stutel char(11),stuaddr var ...
分类:其他好文   时间:2021-03-16 13:47:22    阅读次数:0
线程的创建
线程创建三个方法: 1.继承thread类 2.实现runnable接口 3.实现callable接口 实例: //线程的创建方法public class TestNew { public static void main(String[] args) { new Mythread1().start ...
分类:编程语言   时间:2021-03-16 11:55:44    阅读次数:0
0823. Binary Trees With Factors (M)
Binary Trees With Factors (M) 题目 Given an array of unique integers, arr, where each integer arr[i] is strictly greater than 1. We make a binary tree u ...
分类:其他好文   时间:2021-03-15 11:24:45    阅读次数:0
java String 方法总结
1.字符串中的Str.charAt(num)方法能将字符串中的字符分割。 2.字符串中的长度方法String.length(); 3.把字符串转换为数组 String.toCharArray() 4.字符串翻转方法:reverse()。 5.字符串判断相等的方法: String1.equals(St ...
分类:编程语言   时间:2021-03-15 11:10:39    阅读次数:0
1461. Check If a String Contains All Binary Codes of Size K (M)
Check If a String Contains All Binary Codes of Size K (M) 题目 Given a binary string s and an integer k. Return True if every binary code of length k is ...
分类:其他好文   时间:2021-03-15 10:41:54    阅读次数:0
java 面向对象三
##1.基本数据类型的包装类 Java提倡的万物皆对象,但是数据类型的划分出现了基本数据类型和引用数据类型,那么我们怎么能把基本数据类型称为对象呢? 除了Integer和Character定义的名称和对应的基本类型差异大,其他六种都是将首字母大写就可以了。 Integer,Byte,Float,Do ...
分类:编程语言   时间:2021-03-15 10:38:35    阅读次数:0
【数据结构】算法 Reverse Linked List II 反转链表的一部分
Reverse Linked List II 反转链表 Given the head of a singly linked list and two integers left and right where left <= right, reverse the nodes of the list ...
分类:编程语言   时间:2021-03-10 13:27:14    阅读次数:0
Scanner类输入(部分)
Integer.toHexString() 将数字转化为16进制表示 例: 170->aa; Scanner类 字符串输入--s.next()、s.nextLine()方法 next()方法读取到空白符就结束;nextLine()读取到回车结束也就是“\r” 输入有多组数据,没有说明输入几组数据,每 ...
分类:其他好文   时间:2021-03-09 13:27:59    阅读次数:0
VB判断EXE文件是否打开。
试了好多种,这个方法蛮好用的。有更好的,希望大家多多指教。 Dim ProNo As Integer, ProStr As String ProNo = IsRunning("SSS.exe") If ProNo = 0 Then Shell App.path & "\SSS.exe '" & st ...
分类:其他好文   时间:2021-03-09 13:17:05    阅读次数:0
LeetCode初级算法练习题4_存在重复元素
###1.我的解题代码 class Solution { public boolean containsDuplicate(int[] nums) { boolean flag = false; HashSet<Integer> set = new HashSet<>(); for(int i:nu ...
分类:编程语言   时间:2021-03-09 12:58:00    阅读次数:0
19410条   上一页 1 ... 13 14 15 16 17 ... 1941 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!