• 2021-04-14 问题

    在线性表L中插入一个元素之后,线性表的表长L.length的变化()

    在线性表L中插入一个元素之后,线性表的表长L.length的变化()

  • 2022-05-31 问题

    下列程序的输出结果为 class Box{ int length,width,height; public void setInfo(int l,int w,int h){ length = l; width = w; height = h; } public int volumn(){ return length*width*height; } public int area(){ return (length*width + length*height + width*height) * 2; } public String toString(){ return "Length:" + length + " width:" + width + " height:" + height + " volumn: " + volumn() + " area:" + area(); }} public class BoxTest { public static void main(String[] args) { Box b = new Box(); b.setInfo(5,2,4); System.out.println(b.toString()); }}

    下列程序的输出结果为 class Box{ int length,width,height; public void setInfo(int l,int w,int h){ length = l; width = w; height = h; } public int volumn(){ return length*width*height; } public int area(){ return (length*width + length*height + width*height) * 2; } public String toString(){ return "Length:" + length + " width:" + width + " height:" + height + " volumn: " + volumn() + " area:" + area(); }} public class BoxTest { public static void main(String[] args) { Box b = new Box(); b.setInfo(5,2,4); System.out.println(b.toString()); }}

  • 2022-07-25 问题

    阅读下列算法,并回答问题: void fun(SeqList *L, DataType x) {int i=0,j; while (i[L-]length && x>L->data[i])i++; if(i[L-]length && x==L->data[i]) {for(j=i+1;j[L-]length;j++) L->data[j-1]=L->data[j]; L->length--;} else {for(j=L->length;j>i;j--) L->data[j]=L->data[j-1]; L->data[i]=x; L->length++; } } (1)设顺序表L=(3,7,11,14,20,51), 写出执行fun(&L,15)之后的L=(_____________) (2)设顺序表L=(4,7,10,14,20,51),写出执行fun(&L,10)之后的L= (_____________)[/i][/i][/i]

    阅读下列算法,并回答问题: void fun(SeqList *L, DataType x) {int i=0,j; while (i[L-]length && x>L->data[i])i++; if(i[L-]length && x==L->data[i]) {for(j=i+1;j[L-]length;j++) L->data[j-1]=L->data[j]; L->length--;} else {for(j=L->length;j>i;j--) L->data[j]=L->data[j-1]; L->data[i]=x; L->length++; } } (1)设顺序表L=(3,7,11,14,20,51), 写出执行fun(&L,15)之后的L=(_____________) (2)设顺序表L=(4,7,10,14,20,51),写出执行fun(&L,10)之后的L= (_____________)[/i][/i][/i]

  • 2021-04-14 问题

    182. The length of a wave is the length ______.

    182. The length of a wave is the length ______.

  • 2022-05-27 问题

    What is the ratio of the length of the mining zone to the length of the bench?( ) A: Full length or part of it B: Full length C: Part of it D: None

    What is the ratio of the length of the mining zone to the length of the bench?( ) A: Full length or part of it B: Full length C: Part of it D: None

  • 2022-06-01 问题

    下列代码的执行结果是: int length = "Hello".length(); System.out.println(length);

    下列代码的执行结果是: int length = "Hello".length(); System.out.println(length);

  • 2022-07-22 问题

    length A: length B: launch C: lend

    length A: length B: launch C: lend

  • 2022-06-01 问题

    已知int[][] a= {{1,2},{3,4,5,6},{7,8,9}},a.length()=_________,a[0].length()=__________, a[1].length()=__________,a[2].length()=__________,a[3].length()=__________。

    已知int[][] a= {{1,2},{3,4,5,6},{7,8,9}},a.length()=_________,a[0].length()=__________, a[1].length()=__________,a[2].length()=__________,a[3].length()=__________。

  • 2022-05-31 问题

    返回字符串长度的是( ) A: 成员域length B: 静态成员域length C: 实例方法length() D: 静态成员方法length()

    返回字符串长度的是( ) A: 成员域length B: 静态成员域length C: 实例方法length() D: 静态成员方法length()

  • 2022-07-29 问题

    线性表基本操作ListDelete(&L,i)的功能是删除L的第i个数据元素,且L的长度减1。其中i必须满足条件:1≤i≤ListLength(L),即删除位置可以是1到Length(L)中的任意一个。

    线性表基本操作ListDelete(&L,i)的功能是删除L的第i个数据元素,且L的长度减1。其中i必须满足条件:1≤i≤ListLength(L),即删除位置可以是1到Length(L)中的任意一个。

  • 1 2 3 4 5 6 7 8 9 10