三目运算

三目运算百度百科

三目运算符,又称条件运算符,是计算机语言(c,c++,java等)的重要组成部分。它是唯一有3个操作数的运算符,有时又称为三元运算符。一般来说,三目运算符的结合性是右结合的。

定义

对于条件表达式b ? x : y,先计算条件b,然后进行判断。

如果b的值为true,计算x的值,运算结果为x的值;否则,计算y的值,运算结果为y的值。

一个条件表达式绝不会既计算x,又计算y。

条件运算符是右结合的,也就是说,从右向左分组计算。例如,a ? b : c ? d : e将按a ? b : (c ? d : e)执行。

? : ; "?"运算符的含义是:

先求表达式1的值,如果为真,则执行表达式2,并返回表达式2的结果;

如果表达式1的值为假,则执行表达式3,并返回表达式3的结果。

可以理解为条件 ? 结果1 : 结果2 里面的?号是格式要求。也可以理解为条件是否成立,条件成立为结果1,否则为结果2。

注意:在C语言中,结果1 和 结果2的类型必须一致。

一般来说,三目运算符的结合性是右结合的

但是这点在ANSI C中并没有明确规定

所以它的执行顺序有时是由编译器决定的

a?b:c的含义

if(a) {

return b;

} else {

return c;

}

LeetCode的1576题

替换所有的问号-难度简单28

题目的优秀解法

public String modifyString(String s) {

char[] chars = s.toCharArray();

for (int i = 0; i < chars.length; i++) {

if (chars[i] == '?') {

//前面一个字符 如果当前是第0个的话 字符就为‘ ’

char ahead = i == 0 ? ' ' : chars[i - 1];

//后面一个字符 如果当前是最后一个的话 字符就为‘ ’

char behind = i == chars.length - 1 ? ' ' : chars[i + 1];

//从a开始比较 如果等于前面或者后面的话 就+1

char temp = 'a';

while (temp == ahead || temp == behind ) {

temp++;

}

//找到目标字符后 做替换

chars[i] = temp;

}

}

return new String(chars);

}

作者:JayceonDu

链接:https://leetcode-cn.com/problems/replace-all-s-to-avoid-consecutive-repeating-characters/solution/jian-dan-de-ji-xing-dai-ma-by-jayceondu/

来源:力扣(LeetCode)

著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

博主为了练习范围随机数与数组字符串转换而乱写的废解法,不要学

public String modifyString(String s) {

if (s.length() < 2) {

if (s.equals("?"))

s = "a";

return s;

}

Random random = new Random();

int r = random.nextInt(26)+97; //范围随机数

char beforeVal = '/';

char[] cArr = s.toCharArray();

for (int i = 0; i < cArr.length; i++) {

if (cArr[i] == '?') {

if (beforeVal == '/') {

while (r == cArr[i+1]) {

r = random.nextInt(26)+97;

}

cArr[i] = (char)r;

} else if ((i+1)

while (r == beforeVal || r == cArr[i+1]) {

r = random.nextInt(26)+97;

}

cArr[i] = (char)r;

} else {

while (r == beforeVal) {

r = random.nextInt(26)+97;

}

cArr[i] = (char)r; //int转char的强制转型

}

}

beforeVal = cArr[i];

}

return String.copyValueOf(cArr); // 等效于new String(cArr);

}

关于String类copyValueof(char[])的实现方式

/**

* Equivalent to {@link #valueOf(char[])}.

*

* @param data the character array.

* @return a {@code String} that contains the characters of the

* character array.

*/

public static String copyValueOf(char data[]) {

return new String(data);

}

这个String(char[] value)的构造方法,其实到这里也没啥可继续的了。。。

/**

* Allocates a new {@code String} so that it represents the sequence of

* characters currently contained in the character array argument. The

* contents of the character array are copied; subsequent modification of

* the character array does not affect the newly created string.

*

* @param value

* The initial value of the string

*/

public String(char value[]) { //竟然是这种声明数组的写法,蛮有意思的,不是不推荐的么?

this.value = Arrays.copyOf(value, value.length);

}

Arrays类的copyof(char[] value, int length)方法,突然发现还可以看看,就当丰富自己的认识

/**

* Copies the specified array, truncating or padding with null characters (if necessary)

* so the copy has the specified length. For all indices that are valid

* in both the original array and the copy, the two arrays will contain

* identical values. For any indices that are valid in the copy but not

* the original, the copy will contain '\\u000'. Such indices

* will exist if and only if the specified length is greater than that of

* the original array.

*

* @param original the array to be copied

* @param newLength the length of the copy to be returned

* @return a copy of the original array, truncated or padded with null characters

* to obtain the specified length

* @throws NegativeArraySizeException if newLength is negative

* @throws NullPointerException if original is null

* @since 1.6

*/

public static char[] copyOf(char[] original, int newLength) {

char[] copy = new char[newLength];

System.arraycopy(original, 0, copy, 0,

Math.min(original.length, newLength)); // System类了。。别问,native了呗

return copy;

}

System类的arraycopy方法,纯当英文学习吧,现阶段不深究了,等博主超进化回来。

/**

* Copies an array from the specified source array, beginning at the

* specified position, to the specified position of the destination array.

* A subsequence of array components are copied from the source

* array referenced by src to the destination array

* referenced by dest. The number of components copied is

* equal to the length argument. The components at

* positions srcPos through

* srcPos+length-1 in the source array are copied into

* positions destPos through

* destPos+length-1, respectively, of the destination

* array.

*

* If the src and dest arguments refer to the

* same array object, then the copying is performed as if the

* components at positions srcPos through

* srcPos+length-1 were first copied to a temporary

* array with length components and then the contents of

* the temporary array were copied into positions

* destPos through destPos+length-1 of the

* destination array.

*

* If dest is null, then a

* NullPointerException is thrown.

*

* If src is null, then a

* NullPointerException is thrown and the destination

* array is not modified.

*

* Otherwise, if any of the following is true, an

* ArrayStoreException is thrown and the destination is

* not modified:

*

    *

  • The src argument refers to an object that is not an

    * array.

    *

  • The dest argument refers to an object that is not an

    * array.

    *

  • The src argument and dest argument refer

    * to arrays whose component types are different primitive types.

    *

  • The src argument refers to an array with a primitive

    * component type and the dest argument refers to an array

    * with a reference component type.

    *

  • The src argument refers to an array with a reference

    * component type and the dest argument refers to an array

    * with a primitive component type.

    *

*

* Otherwise, if any of the following is true, an

* IndexOutOfBoundsException is

* thrown and the destination is not modified:

*

    *

  • The srcPos argument is negative.

    *

  • The destPos argument is negative.

    *

  • The length argument is negative.

    *

  • srcPos+length is greater than

    * src.length, the length of the source array.

    *

  • destPos+length is greater than

    * dest.length, the length of the destination array.

    *

*

* Otherwise, if any actual component of the source array from

* position srcPos through

* srcPos+length-1 cannot be converted to the component

* type of the destination array by assignment conversion, an

* ArrayStoreException is thrown. In this case, let

* k be the smallest nonnegative integer less than

* length such that src[srcPos+k]

* cannot be converted to the component type of the destination

* array; when the exception is thrown, source array components from

* positions srcPos through

* srcPos+k-1

* will already have been copied to destination array positions

* destPos through

* destPos+k-1 and no other

* positions of the destination array will have been modified.

* (Because of the restrictions already itemized, this

* paragraph effectively applies only to the situation where both

* arrays have component types that are reference types.)

*

* @param src the source array.

* @param srcPos starting position in the source array.

* @param dest the destination array.

* @param destPos starting position in the destination data.

* @param length the number of array elements to be copied.

* @exception IndexOutOfBoundsException if copying would cause

* access of data outside array bounds.

* @exception ArrayStoreException if an element in the src

* array could not be stored into the dest array

* because of a type mismatch.

* @exception NullPointerException if either src or

* dest is null.

*/

public static native void arraycopy(Object src, int srcPos,

Object dest, int destPos,

int length);

Copyright © 2088 世界杯举办国家_世界杯中 - zbtysj.com All Rights Reserved.
友情链接