当前位置: > give me an answer...
题目
give me an answer
class Program
{
static void Main(string[] args)
{
LinkedList list = new LinkedList();
list.AddFirst(10);
list.AddLast(20);
list.AddLast(30);
list.AddLast(40);
The above program is incomplete,please complete the above program to perform following operations on linked list,the operations to be performed are:
i.Display total number of nodes into the linked list
ii.Add value :25 after 20.
iii.Add value 5 before 10
iv.Check that the list contains value 30,if contains display a message “30 is into the linked list”
v.Display the values of all the nodes from the linked list.

提问时间:2020-11-10

答案
using System;
using System.Collections.Generic;
using System.Text;

namespace LinkedListDemo
{
class Program
{
static void Main(string[] args)
{
LinkedList<int> list = new LinkedList<int>();

list.AddFirst(10);
            list.AddLast(20);
            list.AddLast(30);
            list.AddLast(40);

//i. Display total number of nodes into the linked list
Console.WriteLine("Total number of nodes:{0}", list.Count);

//ii. Add value : 25 after 20.
list.AddAfter(list.Find(20), 25);

//iii. Add value 5 before 10
list.AddBefore(list.Find(10), 5);

//iv. Check that the list contains value 30, if contains display a message “30 is into the linked list”
if (list.Contains(30)) {
Console.WriteLine("30 is into the linked list");
}

//v. Display the values of all the nodes from the linked list.
foreach (int value in list) {
Console.Write("{0} ", value);
}

Console.ReadKey();

}
}
}

 

举一反三
已知函数f(x)=x,g(x)=alnx,a∈R.若曲线y=f(x)与曲线y=g(x)相交,且在交点处有相同的切线,求a的值和该切线方程.
我想写一篇关于奥巴马的演讲的文章,写哪一篇好呢?为什么好
奥巴马演讲不用看稿子.为什么中国领导演讲要看?
想找英语初三上学期的首字母填空练习……
英语翻译
版权所有 CopyRight © 2012-2019 超级试练试题库 All Rights Reserved.