中南oj String and Arrays】的更多相关文章

题目链接:http://acm.csu.edu.cn/OnlineJudge/problem.php?cid=2072&pid=1 Problem B: String and Arrays Time Limit: 1 Sec  Memory Limit: 128 MBSubmit: 222  Solved: 56[Submit][Status][Web Board] Description 有一个N*N的字符矩阵,从上到下依次记为第1行,第2行,……,第N行,从左至右依次记为第1列,第2列,………
Scanner import java.util.Scanner; /* public int nextInt(): to get a integer from keyboard public String next(): to get a string from keyboard,end with space; Scanner sc = new Scanner(System.in); */ Random import java.util.Random; // 构造方法: // public R…
最近项目中  List<String> bikeList = Arrays.asList(bikeuuids);报错 而且console里面没有特别有用的 bikeList.add("1"); bikeList.add("2"); bikeList.add("3"); 走到第二个的时候 就走异常了,考虑了下 Arrays.asList是固定的不能add 所以用 List<String> bikeList= new Arra…
1 字符串的概述和特点 字符串一旦创建,是不可变的. 有双引号的就是字符串 *** 2 字符串的三种构造方法 2-1 第一种: 格式:String str = new String();| :-| 2-2 第二种: 格式:char[] chararray = {'a','b'};| :-| String str2 = new String(chararray);| 2-3 第三种 格式:byte[] bytearray ={97,98};| :-| String str3 = new Strin…
Description 有一个N*N的字符矩阵,从上到下依次记为第1行,第2行,……,第N行,从左至右依次记为第1列,第2列,……,第N列. 对于这个矩阵会进行一系列操作,但这些操作只有两类: (1) R: 将矩阵逆时针旋转90度: (2) P x y: 将此时第x行第y列的字符打印出来,其中1 <= x, y <= N.   Input 输入数据的第一行包含一个整数T (1 <= T <= 20),表示接下来一共有T组测试数据. 对于每组测试数据,第一行包含一个整数N (1 &l…
一.String常用方法 1.subString(int beginIndex,int endIndex) 截取字符串 从beginIndex开始截取,截取endIndex-beginIndex的长度 案列: String str=”helloFriend”; str.subString(4,8);   //结果:oFri 2.   subString(int beginIndex) 从下标beginIndex截取到最后 案列: String str=”helloFriend”; str.sub…
Description 有一个N*N的字符矩阵,从上到下依次记为第1行,第2行,--,第N行,从左至右依次记为第1列,第2列,--,第N列.    对于这个矩阵会进行一系列操作,但这些操作只有两类:    (1) R: 将矩阵逆时针旋转90度:    (2) P x y: 将此时第x行第y列的字符打印出来,其中1 <= x, y <= N. Input 输入数据的第一行包含一个整数T (1 <= T <= 20),表示接下来一共有T组测试数据.    对于每组测试数据,第一行包含一…
1216: 异或最大值 Time Limit: 2 Sec  Memory Limit: 128 MB Submit: 98  Solved: 29 [Submit][Status][Web Board] Description 给定一些数,求这些数中两个数的异或值最大的那个值 Input 第一行为数字个数n,1 <= n <= 10 ^ 5.接下来n行每行一个32位有符号非负整数. Output 任意两数最大异或值 Sample Input 3 3 7 9 Sample Output 14…
Description 有一个N*N的字符矩阵,从上到下依次记为第1行,第2行,--,第N行,从左至右依次记为第1列,第2列,--,第N列.    对于这个矩阵会进行一系列操作,但这些操作只有两类:    (1) R: 将矩阵逆时针旋转90度:    (2) P x y: 将此时第x行第y列的字符打印出来,其中1 <= x, y <= N. Input 输入数据的第一行包含一个整数T (1 <= T <= 20),表示接下来一共有T组测试数据.    对于每组测试数据,第一行包含一…
#include <iostream> #include <assert.h> using namespace std; int ato(const char *str) { ,e=,s=; ,min=-; ; ]={}; unsigned ; while(*str==' '){ //过滤掉连续空格 str++; } ')){ if(*str=='-'||*str=='+'){ //过滤掉正负号 if(*str=='-') f=-; str++; } ') //过滤掉前面的无用的0…