博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
算法(第四版)C# 习题题解——1.3
阅读量:4637 次
发布时间:2019-06-09

本文共 96093 字,大约阅读时间需要 320 分钟。

写在前面

整个项目都托管在了 Github 上:

这一节内容可能会用到的库文件有 Generics,同样在 Github 上可以找到。

善用 Ctrl + F 查找题目。

习题&题解

1.3.1

解答

首先是 FixedCapacityStackOfStrings 类,官方 JAVA 版本参考:

IsFull() 的实现比较简单,判断 N 与数组长度是否相等即可。

代码

FixedCapacityStackOfStrings  类

using System;using System.Collections;using System.Collections.Generic;namespace _1._3._1{    class FixedCapacityStackOfStrings : IEnumerable
{ private string[] a; private int N; ///
/// 默认构造函数。 /// ///
栈的大小。 public FixedCapacityStackOfStrings(int capacity) { this.a = new string[capacity]; this.N = 0; } ///
/// 检查栈是否为空。 /// ///
public bool IsEmpty() { return this.N == 0; } ///
/// 检查栈是否已满。 /// ///
public bool IsFull() { return this.N == this.a.Length; } ///
/// 将一个元素压入栈中。 /// ///
要压入栈中的元素。 public void Push(string item) { this.a[N] = item; this.N++; } ///
/// 从栈中弹出一个元素,返回被弹出的元素。 /// ///
public string Pop() { this.N--; return this.a[N]; } ///
/// 返回栈顶元素(但不弹出它)。 /// ///
public string Peek() { return this.a[N - 1]; } public IEnumerator
GetEnumerator() { return new ReverseEnmerator(this.a); } IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } private class ReverseEnmerator : IEnumerator
{ private int current; private string[] a; public ReverseEnmerator(string[] a) { this.current = a.Length; this.a = a; } string IEnumerator
.Current => a[current]; object IEnumerator.Current => a[current]; void IDisposable.Dispose() { this.current = -1; this.a = null; } bool IEnumerator.MoveNext() { if (this.current == 0) return false; this.current--; return true; } void IEnumerator.Reset() { this.current = a.Length; } } }}

1.3.2

解答

首先是 Stack<> 类的实现,官方 JAVA 版本参考:

输出内容:was best times of the was the it

代码

Stack<> 类

using System;using System.Collections;using System.Collections.Generic;using System.Text;namespace Generics{    public class Stack
: IEnumerable
{ private Node
first; private int count; ///
/// 默认构造函数。 /// public Stack() { this.first = null; this.count = 0; } ///
/// 复制构造函数。 /// ///
public Stack(Stack
s) { if (s.first != null) { this.first = new Node
(s.first); for (Node
x = this.first; x.next != null; x = x.next) { x.next = new Node
(x.next); } } } ///
/// 检查栈是否为空。 /// ///
public bool IsEmpty() { return this.first == null; } ///
/// 返回栈内元素的数量。 /// ///
public int Size() { return this.count; } ///
/// 将一个元素压入栈中。 /// ///
要压入栈中的元素。 public void Push(Item item) { Node
oldFirst = this.first; this.first = new Node
(); this.first.item = item; this.first.next = oldFirst; this.count++; } ///
/// 将一个元素从栈中弹出,返回弹出的元素。 /// ///
public Item Pop() { if (IsEmpty()) throw new InvalidOperationException("Stack Underflow"); Item item = this.first.item; this.first = this.first.next; this.count--; return item; } ///
/// 返回栈顶元素(但不弹出它)。 /// ///
public Item Peek() { if (IsEmpty()) throw new InvalidOperationException("Stack Underflow"); return this.first.item; } ///
/// 将两个栈连接。 /// ///
第一个栈。 ///
第二个栈(将被删除)。 ///
public static Stack
Catenation(Stack
s1, Stack
s2) { if (s1.IsEmpty()) { s1.first = s2.first; s1.count = s2.count; } else { Node
last = s1.first; while (last.next != null) { last = last.next; } last.next = s2.first; s1.count += s2.count; } s2 = null; return s1; } ///
/// 创建栈的浅表副本。 /// ///
public Stack
Copy() { Stack
temp = new Stack
(); temp.first = this.first; temp.count = this.count; return temp; } public override string ToString() { StringBuilder s = new StringBuilder(); foreach (Item n in this) { s.Append(n); s.Append(' '); } return s.ToString(); } public IEnumerator
GetEnumerator() { return new StackEnumerator(this.first); } IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } private class StackEnumerator : IEnumerator
{ private Node
current; private Node
first; public StackEnumerator(Node
first) { this.current = new Node
(); this.current.next = first; this.first = this.current; } Item IEnumerator
.Current => current.item; object IEnumerator.Current => current.item; void IDisposable.Dispose() { this.current = null; this.first = null; } bool IEnumerator.MoveNext() { if (this.current.next == null) return false; this.current = this.current.next; return true; } void IEnumerator.Reset() { this.current = this.first; } } }}

1.3.3

解答

这个问题的通用解法见习题 1.3.46 的解答。

第 2、6、7 个不可能产生,可以画个栈模拟一下。

第 2 个

     输出数   栈内数

      4        0~3
      6        0~3 + 5
      8        0~3 + 5 + 7
      7        0~3 + 5
      5        0~3
      3        0~2
      2        0~1
      9        0~1
      0        Error
第 6 个
     输出数   栈内数
      0        null
      4        1~3
      6        1~3 + 5
      5        1~3
      3        1~2
      8        1~2 + 7
      1        Error
第 7 个
     输出数   栈内数
      1        0
      4        0 + 2~3
      7        0 + 2~3 + 5~6
      9        0 + 2~3 + 5~6 + 8
      8        0 + 2~3 + 5~6
      6        0 + 2~3 + 5
      5        0 + 2~3
      3        0 + 2
      0        Error

1.3.4

解答

官方 JAVA 版本参考:。

遇到左括号就入栈,遇到右括号就检查是否和栈顶的左括号匹配,如果匹配则弹栈,否则返回 false。

结束时如果栈不为空则返回 false,否则返回 true。

代码
using System;using Generics;namespace _1._3._4{    /*     * 1.3.4     *      * 编写一个 Stack 的用例 Parentheses,     * 从标准输入中读取一个文本流并使用栈判定其中的括号是否配对完整。     * 例如,对于 [()]{}{[()()]()} 程序应该打印 true,     * 对于 [(]) 则打印 false。     *      */    class Parentheses    {        static bool isBalanced(string input)        {            Stack
stack = new Stack
(); foreach (char i in input) { if (i == '(' || i == '[' || i == '{
') stack.Push(i); else { if (stack.Peek() == '(' && i == ')') stack.Pop(); else if (stack.Peek() == '{
' && i == '}') stack.Pop(); else if (stack.Peek() == '[' && i == ']') stack.Pop(); else return false; } } return stack.IsEmpty(); } static void Main(string[] args) { string input = "[()]{}{[()()]()}"; Console.WriteLine(isBalanced(input)); string input2 = "[(])"; Console.WriteLine(isBalanced(input2)); } }}

1.3.5

解答

实际上是用除二取余法求一个十进制数的二进制形式。

代码
using System;using Generics;namespace _1._3._5{    /*     * 1.3.5     *      * 当 N 为 50 时下面这段代码会打印什么?     * 从较高的抽象层次描述给定正整数 N 时这段代码的行为。     *      */    class Program    {        //将十进制数 N 转换为二进制数。        static void Main(string[] args)        {            int N = 50;            Stack
stack = new Stack
(); while (N > 0) { stack.Push(N % 2); N = N / 2; } foreach (int d in stack) { Console.WriteLine(d); } Console.WriteLine(); } }}

1.3.6

解答

利用一个栈对队列元素进行反序操作。

先把队列中的元素全部入栈,再依次弹出并加入队列中。

代码
using System;using Generics;namespace _1._3._6{    /*     * 1.3.6     *      * 下面这段代码对队列 q 进行了什么操作?     *      */    class Program    {        //将队列反序        static void Main(string[] args)        {            Queue
q = new Queue
(); q.Enqueue("first"); q.Enqueue("second"); q.Enqueue("third"); q.Enqueue("fourth"); Stack
stack = new Stack
(); while (!q.IsEmpty()) stack.Push(q.Dequeue()); while (!stack.IsEmpty()) q.Enqueue(stack.Pop()); Console.WriteLine(q.ToString()); } }}

1.3.7

解答

链表实现的话就是返回第一个结点 first 的 item 字段。

数组实现的话就是返回 first 对应的数组元素。

这里给出链表实现,完整实现见习题 1.3.2 的代码。

代码
///         /// 返回栈顶元素(但不弹出它)。        ///         /// 
public Item Peek() { if (IsEmpty()) throw new InvalidOperationException("Stack Underflow"); return this.first.item; }

1.3.8

解答

首先是 DoublingStackOfStrings 类,据我猜测应该是用数组实现的栈,扩容时长度增加一倍,缩短时长度减小一半。

官方 JAVA 代码参考:。

代码

DoublingStackOfStrings 类

using System;using System.Collections;using System.Collections.Generic;namespace _1._3._8{    class DoublingStackOfStrings : IEnumerable
{ private string[] items; private int count; ///
/// 新建一个字符串栈。 /// public DoublingStackOfStrings() { this.items = new string[2]; this.count = 0; } ///
/// 检查栈是否为空。 /// ///
public bool IsEmpty() { return this.count == 0; } ///
/// 返回栈中字符串的数量。 /// ///
public int Size() { return this.count; } ///
/// 向栈中压入一个字符串。 /// ///
public void Push(string s) { if (this.count == this.items.Length) Resize(this.items.Length * 2); this.items[this.count] = s; this.count++; } ///
/// 从栈中弹出一个字符串,返回被弹出的元素。 /// ///
public string Pop() { if (IsEmpty()) throw new InvalidOperationException("Stack underflow"); count--; //缩小长度 if (count > 0 && count <= items.Length / 4) Resize(items.Length / 2); return items[count]; } ///
/// 返回栈顶元素(但不弹出它)。 /// ///
public string Peek() { if (IsEmpty()) throw new InvalidOperationException("Stack underflow"); return items[count - 1]; } ///
/// 为栈重新分配空间,超出空间的元素将被舍弃。 /// ///
重新分配的空间大小。 private void Resize(int capcity) { string[] temp = new string[capcity]; for (int i = 0; i < this.count; ++i) { temp[i] = items[i]; } items = temp; } public IEnumerator
GetEnumerator() { return new StackEnumerator(this.items); } IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } private class StackEnumerator : IEnumerator
{ int current; string[] items; public StackEnumerator(string[] items) { this.items = items; current = -1; } string IEnumerator
.Current => this.items[this.current]; object IEnumerator.Current => this.items[this.current]; void IDisposable.Dispose() { this.items = null; this.current = -1; } bool IEnumerator.MoveNext() { if (this.current == items.Length - 1) return false; this.current++; return true; } void IEnumerator.Reset() { this.current = -1; } } }}

Program.cs

using System;namespace _1._3._8{    /*     * 1.3.8     *      * 给定以下输入,给出 DoublingStackOfStrings 的数组的内容和大小。     *      * it was - the best - of times - - - it was - the - -     *      */    class Program    {        static void Main(string[] args)        {            DoublingStackOfStrings stack = new DoublingStackOfStrings();            string[] input = "it was - the best - of times - - - it was - the - -".Split(' ');            foreach (string n in input)            {                if (n == "-")                    stack.Pop();                else                    stack.Push(n);            }            foreach (string s in stack)            {                Console.Write(s + ' ');            }            Console.WriteLine($"\nStack Size: {stack.Size()}");        }    }}

1.3.9

解答

在计算中序表达式算法的基础上做修改。

压入数字时将该数字所在的位置也一并压入。
弹出数字进行运算时在位置靠前的数字前加上左括号。
A + B ) * C + D ) ) 为例。
A 压入栈中并记录位置 。                                      
+ 压入栈中。
B 压入栈中并记录位置。                                            
) 计算,在 A 之前加入左括号,结果 E 压入栈中,位置为 A 的位置。
* 压入栈中。
C 压入栈中并记录位置。
+ 压入栈中。
D 压入栈中并记录位置。
) 计算,在 C 之前加入左括号,结果 F 压入栈中,位置为 C 的位置。
) 计算,在 E 之前加入左括号(也就是 A 之前),结果 G 压入栈中,位置为 E 的位置。

代码
using System;using Generics;namespace _1._3._9{    /*     * 1.3.9     *      * 编写一段程序,从标准输入得到一个缺少左括号的表达式并打印出补全括号之后的中序表达式。     * 例如,给定输入:     * 1 + 2 ) * 3 - 4 ) * 5 - 6 ) ) )     * 你的程序应该输出:     * ( ( 1 + 2 ) * ( ( 3 - 4 ) * ( 5 - 6 ) ) )     *      */    class Program    {        //在计算中序表达式算法的基础上做修改        //压入数字时将该数字所在的位置也一并压入        //弹出数字进行运算时在位置靠前的数字前加上左括号        //A + B ) * C + D ) ) 为例        //A 压入栈中并记录位置                                                //+ 压入栈中        //B 压入栈中并记录位置                                                     //) 计算,在 A 之前加入左括号,结果 E 压入栈中,位置为 A 的位置        //* 压入栈中        //C 压入栈中并记录位置        //+ 压入栈中        //D 压入栈中并记录位置        //) 计算,在 C 之前加入左括号,结果 F 压入栈中,位置为 C 的位置        //) 计算,在 E 之前加入左括号(也就是 A 之前),结果 G 压入栈中,位置为 E 的位置。        static void Main(string[] args)        {            string input = "1 + 2 ) * 3 - 4 ) * 5 - 6 ) ) )";            Stack
operators = new Stack
(); Stack
numbers = new Stack
(); int[] leftBrackets = new int[input.Length]; for (int i = 0; i < input.Length; ++i) { if (input[i] == ' ') continue; else if (input[i] == '+' || input[i] == '-' || input[i] == '*' || input[i] == '/') { operators.Push(input[i]); } else if (input[i] == ')') { Number B = numbers.Pop(); Number A = numbers.Pop(); char operation = operators.Pop(); Number C = new Number(); C.Position = A.Position; leftBrackets[A.Position]++; switch (operation) { case '+': C.Value = A.Value + B.Value; break; case '-': C.Value = A.Value - B.Value; break; case '*': C.Value = A.Value * B.Value; break; case '/': C.Value = A.Value / B.Value; break; } numbers.Push(C); } else { Number num = new Number(); num.Position = i; num.Value = input[i] - '0'; numbers.Push(num); } } for (int i = 0; i < input.Length; ++i) { while (leftBrackets[i] != 0) { Console.Write("( "); leftBrackets[i]--; } Console.Write(input[i]); } } } struct Number { public int Value; public int Position; }}

1.3.10

解答

官方 JAVA 代码:。

其实就是把右括号换成相应运算符

对于 (A + B),忽略左括号,数字直接输出,运算符入栈,遇到右括号时再弹出
结果 A B +,变成后序表达式

代码
using System;using Generics;namespace _1._3._10{    /*     * 1.3.10     *      * 编写一个过滤器 InfixToPostfix,     * 将算术表达式由中序表达式转为后序表达式。     *      */    class InfixToPostfix    {        //其实就是把右括号换成相应运算符        //对于 (A + B),忽略左括号,数字直接输出,运算符入栈,遇到右括号时再弹出        //结果 A B +,变成后序表达式        static void Main(string[] args)        {            Stack
stack = new Stack
(); string[] input = "( 2 + ( ( 3 + 4 ) * ( 5 * 6 ) ) )".Split(' '); foreach (string n in input) { if (n == " ") continue; else if (n == "+" || n == "-" || n == "*" || n == "/") { stack.Push(n); } else if (n == ")") { Console.Write(stack.Pop() + " "); } else if (n == "(") { continue; } else { Console.Write(n + " "); } } Console.WriteLine(); } }}

1.3.11

解答

官方 JAVA 代码:。

遇到数字就入栈,遇到运算符就弹出两个数字运算,再把结果入栈。

如果倒着读取的话也可以用递归做,当作前序表达式计算即可。

代码
using System;using Generics;namespace _1._3._11{    /*     * 1.3.11     *      * 编写一段程序 EvaluatePostfix,从标准输入中得到一个后序表达式,求值并打印结果     * (将上一题的程序中得到的输出用管道传递给这一段程序可以得到和 Evaluate 相同的行为)。     *      */    class EvaluatePostfix    {        static void Main(string[] args)        {            Stack
stack = new Stack
(); string[] input = "7 16 * 5 + 16 * 3 + 16 * 1 +".Split(' '); foreach (string n in input) { if (n == " ") { continue; } else if (n == "+") { stack.Push(stack.Pop() + stack.Pop()); } else if (n == "-") { int temp = stack.Pop(); stack.Push(stack.Pop() - temp); } else if (n == "*") { stack.Push(stack.Pop() * stack.Pop()); } else if (n == "/") { int temp = stack.Pop(); stack.Push(stack.Pop() / temp); } else { stack.Push(int.Parse(n)); } } Console.WriteLine(stack.Pop()); } }}

1.3.12

解答

先用 foreach 语句遍历一遍栈,把所有元素都压入一个临时栈中。

此时临时栈变成了源栈的一个倒序副本。

再将临时栈中的元素依次压入目标栈中,就得到了源栈的一个副本。

代码
using System;using Generics;namespace _1._3._12{    /*     * 1.3.12     *      * 编写一个可迭代的 Stack 用例,它含有一个静态的 CopyTo() 方法,     * 接受一个字符串的栈作为参数并返回该栈的一个副本。     * 注意:这种能力是迭代器价值的一个重要体现,     * 因为有了它我们无需改变基本 API 就能实现这种功能。     *      */    class Program    {        static void Main(string[] args)        {            Stack
src = new Stack
(); src.Push("first"); src.Push("second"); src.Push("third"); Stack
des = CopyTo(src); while (!des.IsEmpty()) { Console.WriteLine(des.Pop()); } } static Stack
CopyTo(Stack
src) { Stack
des = new Stack
(); Stack
temp = new Stack
(); foreach (string s in src) { temp.Push(s); } while (!temp.IsEmpty()) { des.Push(temp.Pop()); } return des; } }}

1.3.13

解答

除了第一个以外都不可能。

根据题意,0 一定是最先入列的。

那么根据队列的特性,0 一定是最先出列的,因此除第一个以外其他几个序列都不可能。

1.3.14

解答

对于 ResizingArrayQueueOfStrings 类,给出官方 JAVA 代码参考:。

代码

ResizingArrayQueueOfStrings 类

using System;using System.Collections;using System.Collections.Generic;namespace _1._3._14{    class ResizingArrayQueueOfStrings
: IEnumerable
{ private Item[] q; private int count; private int first; private int last; public ResizingArrayQueueOfStrings() { this.q = new Item[2]; this.count = 0; this.first = 0; } public bool IsEmpty() { return this.count == 0; } public int Size() { return this.count; } private void Resize(int capacity) { if (capacity < 0) throw new ArgumentException("capacity should be above zero"); Item[] temp = new Item[capacity]; for (int i = 0; i < count; ++i) { temp[i] = this.q[(this.first + i) % this.q.Length]; } this.q = temp; this.first = 0; this.last = this.count; } public void Enqueue(Item item) { if (this.count == this.q.Length) { Resize(this.count * 2); } this.q[this.last] = item; this.last++; if (this.last == this.q.Length) this.last = 0; this.count++; } public Item Dequeue() { if (IsEmpty()) throw new InvalidOperationException("Queue underflow"); Item item = this.q[first]; this.q[first] = default(Item); this.count--; this.first++; if (this.first == this.q.Length) this.first = 0; if (this.count > 0 && this.count <= this.q.Length / 4) Resize(this.q.Length / 2); return item; } public Item Peek() { if (IsEmpty()) throw new InvalidOperationException("Queue underflow"); return this.q[first]; } public IEnumerator
GetEnumerator() { return new QueueEnumerator(this.q, this.first, this.last); } IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } private class QueueEnumerator : IEnumerator
{ int current; int first; int last; Item[] q; public QueueEnumerator(Item[] q, int first, int last) { this.current = first - 1; this.first = first; this.last = last; this.q = q; } Item IEnumerator
.Current => this.q[this.current]; object IEnumerator.Current => this.q[this.current]; void IDisposable.Dispose() { } bool IEnumerator.MoveNext() { if (this.current == this.last - 1) return false; this.current++; return true; } void IEnumerator.Reset() { this.current = this.first - 1; } } }}

Program.cs

using System;namespace _1._3._14{    /*     * 1.3.14     *      * 编写一个类 ResizingArrayQueueOfStrings,     * 使用定长数组实现队列的抽象,然后扩展实现,     * 使用调整数组的方法突破大小的限制。     *      */    class Program    {        public static void Main(string[] args)        {            ResizingArrayQueueOfStrings
queue = new ResizingArrayQueueOfStrings
(); string[] input = "to be or not to - be - - that - - - is".Split(' '); foreach (string s in input) { if (!s.Equals("-")) queue.Enqueue(s); else if (!queue.IsEmpty()) Console.Write(queue.Dequeue() + ' '); } Console.WriteLine("(" + queue.Size() + " left on queue)"); } }}

1.3.15

解答

方法有很多,只要把所有输入保存,之后算出倒数第 k 个是正数第几个就可以了。

这里先全部入队,之后算出是正数第几个,再把前面的元素全部出队,剩下的第一个就是要求的元素了。

代码
using System;using Generics;namespace _1._3._15{    /*     * 1.3.15     *      * 编写一个 Queue 的用例,接受一个命令行参数 k 并打印出标准输入中的倒数第 k 个字符串     * (假设标准输入中至少有 k 个字符串)。     *      */    class Program    {        static void Main(string[] args)        {            Queue
queue = new Queue
(); string[] input = "1 2 3 4 5 6 7 8 9 10".Split(' '); int k = 4; foreach(string s in input) { queue.Enqueue(s); } int count = queue.Size() - k; for(int i = 0; i < count; ++i) { queue.Dequeue(); } Console.WriteLine(queue.Peek()); } }}

1.3.16

解答

在习题 1.2.19 里已经写好了接受字符串作为参数构造函数(可以到   里查看),

这里只要把所有字符串读入并调用相应构造函数就可以了。

代码

ReadDates()

///         /// 从标准输入按行读取所有日期,返回一个日期数组。        ///         /// 
public static Date[] ReadDates() { char[] split = new char[] { '\n' }; string[] input = Console.In.ReadToEnd().Split(split, StringSplitOptions.RemoveEmptyEntries); Date[] d = new Date[input.Length]; for (int i = 0; i < input.Length; ++i) { d[i] = new Date(input[i]); } return d; }

Program.cs

using System;namespace _1._3._16{    /*     * 1.3.16     *      * 使用 1.3.1.5 节中的 readInts() 作为模板为 Date 编写一个静态方法 readDates(),     * 从标准输入中读取由练习 1.2.19 的表格指定的格式的多个日期并返回一个它们的数组。     *      */    class Program    {        static void Main(string[] args)        {            //输入结束后按 Ctrl + Z 标记结尾            //输入格式:06/30/2017            //以回车分隔            Date[] date = Date.ReadDates();            foreach (Date d in date)            {                Console.WriteLine(d);            }        }    }}

1.3.17

解答

和前一题类似,按行读取输入再调用相应构造函数就可以了。

代码

ReadTransactions()

///         /// 从标准输入中按行读取所有交易信息,返回一个 Transaction 数组。        ///         /// 
public static Transaction[] ReadTransactions() { char[] split = new char[] { '\n' }; string[] input = Console.In.ReadToEnd().Split(split, StringSplitOptions.RemoveEmptyEntries); Transaction[] t = new Transaction[input.Length]; for (int i = 0; i < input.Length; ++i) { t[i] = new Transaction(input[i]); } return t; }

Program.cs

using System;namespace _1._3._17{    /*     * 1.3.17     *      * 为 Transaction 类完成练习 1.3.16     *      */    class Program    {        static void Main(string[] args)        {            //用 Ctrl + Z 标记结束输入            Transaction[] t = Transaction.ReadTransactions();            foreach (Transaction n in t)            {                Console.WriteLine(n.ToString());            }        }    }}

1.3.18

解答

删除该结点的下一个结点。

如下图,没有任何结点指向 y 结点,失去了所有引用的 y 结点会被 GC 清理掉。

代码
using System;using Generics;namespace _1._3._18{    /*     * 1.3.18     *      * 假设 x 是一条链表的某个结点且不是尾结点。     * 下面这条语句的效果是什么?     * x.next = x.next.next;     *      */    class Program    {        //删除 x 的后一个结点。        static void Main(string[] args)        {            Node
x = new Node
(); x.item = "first"; Node
y = new Node
(); y.item = "second"; x.next = y; Node
z = new Node
(); z.item = "third"; y.next = z; Console.WriteLine("x: " + x.item); Console.WriteLine("x.next: " + x.next.item); x.next = x.next.next; Console.WriteLine(); Console.WriteLine("x: " + x.item); Console.WriteLine("x.next: " + x.next.item); } }}

1.3.19

解答

建立一个结点引用 Cur,让它移动到尾结点的前一个结点,让那个结点的 next 变为 null。

代码
using System;using Generics;namespace _1._3._19{    /*     * 1.3.19     *      * 给出一段代码,删除链表的尾结点,其中链表的首结点为 first。     *      */    class Program    {        static void Main(string[] args)        {            Node
first = new Node
() { item = "first" }; Node
second = new Node
() { item = "second" }; Node
third = new Node
() { item = "third" }; first.next = second; second.next = third; third.next = null; Node
current = first; while (current != null) { Console.Write(current.item + " "); current = current.next; } DeleteLast(first); Console.WriteLine(); current = first; while (current != null) { Console.Write(current.item + " "); current = current.next; } Console.WriteLine(); } static void DeleteLast(Node
first) { Node
current = first; while (current.next.next != null) { current = current.next; } current.next = null; } }}

1.3.20

解答

和上一题类似,只不过这次让 Cur 移动 k – 1 次即可。

代码
///         /// 删除指定位置的元素,返回该元素。        ///         /// 需要删除元素的位置。        /// 
public Item Delete(int index) { if (index >= this.count) { throw new IndexOutOfRangeException(); } Node
front = this.first; Item temp = this.first.item; if (index == 0) { this.first = this.first.next; return temp; } for (int i = 1; i < index; ++i) { front = front.next; } temp = front.next.item; front.next = front.next.next; this.count--; return temp; }

1.3.21

解答

遍历整条链表,方法和前两题类似,用一个结点引用 Cur 去访问就可以了。

代码
using System;using Generics;namespace _1._3._21{    /*     * 1.3.21     *      * 编写一个方法 find(),接受一条链表和一个字符串 key 作为参数。     * 如果链表中的某个结点的 item 域的值为 key,则方法返回 true,否则返回 false。     *      */    class Program    {        static void Main(string[] args)        {            LinkedList
link = new LinkedList
(); link.Insert("first", 0); link.Insert("second", 1); link.Insert("third", 2); Console.WriteLine(Find(link, "second")); Console.WriteLine(Find(link, "fourth")); } static bool Find
(LinkedList
link, Item key) { foreach (Item i in link) { if (i.Equals(key)) { return true; } } return false; } }}

1.3.22

解答

在 x 之后插入 t,如下图所示。

代码
using System;using Generics;namespace _1._3._22{    /*     * 1.3.22     *      * 假设 x 是一条链表中的某个结点,下面这段代码做了什么?     *      */    class Program    {        //将 t 插入到 x 之后        static void Main(string[] args)        {            Node
first = new Node
(); Node
second = new Node
(); Node
third = new Node
(); Node
fourth = new Node
(); first.item = "first"; second.item = "second"; third.item = "third"; fourth.item = "fourth"; first.next = second; second.next = third; third.next = fourth; fourth.next = null; Node
current = first; while (current != null) { Console.Write(current.item + " "); current = current.next; } Node
t = new Node
(); t.item = "t"; t.next = second.next; second.next = t; Console.WriteLine(); current = first; while (current != null) { Console.Write(current.item + " "); current = current.next; } } }}

1.3.23

解答

由于先后问题,y 在第一句代码执行完毕之后无法访问,t 的 next 会指向自己。

代码
using System;using Generics;namespace _1._3._23{    /*     * 1.3.23     *      * 为什么下面这段代码和上一题中的代码效果不同?     *      */    class Program    {        //x.next = t        x 的下一个是 t        //t.next = x.next   t 的下一个和 x 的下一个相同(也就是 t)        //于是 t.next = t, 遍历会出现死循环。        static void Main(string[] args)        {            Node
first = new Node
(); Node
second = new Node
(); Node
third = new Node
(); Node
fourth = new Node
(); first.item = "first"; second.item = "second"; third.item = "third"; fourth.item = "fourth"; first.next = second; second.next = third; third.next = fourth; fourth.next = null; Node
current = first; while (current != null) { Console.Write(current.item + " "); current = current.next; } Node
t = new Node
(); t.item = "t"; second.next = t; t.next = second.next; Console.WriteLine(); current = first; while (current != null) { Console.Write(current.item + " "); current = current.next; } } }}

1.3.24

解答

直接把该节点的 next 域设为 null,后续元素就会因无法访问而被清理掉。

代码
using System;using Generics;namespace _1._3._24{    /*     * 1.3.24     *      * 编写一个方法 removeAfter(),接受一个链表结点作为参数并删除该结点的后续结点。     * (如果参数结点的后续结点为空则什么也不做)     *      */    class Program    {        static void Main(string[] args)        {            Node
first = new Node
(); Node
second = new Node
(); Node
third = new Node
(); Node
fourth = new Node
(); first.item = "first"; second.item = "second"; third.item = "third"; fourth.item = "fourth"; first.next = second; second.next = third; third.next = fourth; fourth.next = null; Node
current = first; while (current != null) { Console.Write(current.item + " "); current = current.next; } RemoveAfter(second); Console.WriteLine(); current = first; while (current != null) { Console.Write(current.item + " "); current = current.next; } } static void RemoveAfter
(Node
i) { i.next = null; } }}

1.3.25

解答

见练习 1.3.22,加入一些对边界情况的处理即可。

代码
using System;using Generics;namespace _1._3._25{    /*     * 1.3.25     *      * 编写一个方法 insertAfter(),接受两个链表结点作为参数,     * 将第二个结点插入链表并使之成为第一个结点的后续结点     * (如果两个参数为空则什么也不做)。     *      */    class Program    {        static void Main(string[] args)        {            Node
first = new Node
(); Node
second = new Node
(); Node
third = new Node
(); first.item = "first"; second.item = "second"; third.item = "third"; first.next = second; second.next = null; Node
current = first; while (current != null) { Console.Write(current.item + " "); current = current.next; } InsertAfter(second, third); Console.WriteLine(); current = first; while (current != null) { Console.Write(current.item + " "); current = current.next; } } static void InsertAfter
(Node
A, Node
B) { if (A == null || B == null) return; B.next = A.next; A.next = B; } }}

1.3.26

解答

之前已经写过了删除指定结点(习题 1.3.20)和查找指定结点(习题 1.3.21),结合使用即可。

代码
using System;using Generics;namespace _1._3._26{    /*     * 1.3.26     *      * 编写一个方法 remove(),接受一条链表和一个字符串 key 作为参数,     * 删除链表中所有 item 域为 key 的结点。     *      */    class Program    {        static void Main(string[] args)        {            LinkedList
link = new LinkedList
(); link.Insert("first", 0); link.Insert("second", 1); link.Insert("third", 2); link.Insert("third", 3); link.Insert("third", 4); Console.WriteLine(link); Remove(link, "third"); Console.WriteLine(link); } static void Remove(LinkedList
link, string key) { for (int i = 0; i < link.Size(); ++i) { if (link.Find(i) == key) { link.Delete(i); i--; } } } }}

1.3.27

解答

遍历一遍即可。

代码
using System;using Generics;namespace _1._3._27{    /*     * 1.3.27     *      * 编写一个方法 max(),接受一条链表的首结点作为参数,返回链表中键最大的节点的值。     * 假设所有键均为正整数,如果链表为空则返回 0。     *      */    class Program    {        static void Main(string[] args)        {            Node
first = new Node
(); Node
second = new Node
(); Node
third = new Node
(); Node
fourth = new Node
(); first.item = 1; second.item = 2; third.item = 3; fourth.item = 4; first.next = second; second.next = third; third.next = fourth; fourth.next = null; Console.WriteLine("Max:" + Max(first)); } static int Max(Node
first) { int max = 0; Node
current = first; while (current != null) { if (max < current.item) { max = current.item; } current = current.next; } return max; } }}

1.3.28

解答

其实链表本身就是一个递归结构,链表的定义可以用递归的方式表示:

链表 = 头结点A + 链表B = 头结点A + 头结点B + 链表C……

所以 Max() 可以这么写:

Max(Node<Item> Cur, int nowmax)

如果 Cur 为空,则直接返回 nowmax。

否则检查 Cur 结点的值是否大于目前找到的最大值 nowmax。

如果不大于,继续查找下一个结点,返回 Max(Cur.next, nowmax)

否则,把 nowmax 修改为当前结点的值,继续查找,返回 Max(Cur.next, Cur.item)

代码
using System;using Generics;namespace _1._3._28{    /*     * 1.3.28     *      * 用递归方法解答上一道练习。     *      */    class Program    {        static void Main(string[] args)        {            Node
first = new Node
(); Node
second = new Node
(); Node
third = new Node
(); Node
fourth = new Node
(); first.item = 1; second.item = 2; third.item = 3; fourth.item = 4; first.next = second; second.next = third; third.next = fourth; fourth.next = null; Console.WriteLine("Max:" + Max(first)); } static int Max(Node
first, int max = 0) { if (first == null) return max; if (max < first.item) return Max(first.next, first.item); else return Max(first.next, max); } }}

1.3.29

解答

其实就是一个长这样的链表:

显然说 first 和最后一个节点的指针重复了,所以我们只需要保留 last 的指针就行了。

入队(注意顺序)

出队

代码

Queue.cs

using System;using System.Collections;using System.Collections.Generic;using System.Text;namespace _1._3._29{    public class Queue
: IEnumerable
{ private Node
last; private int count; ///
/// 默认构造函数。 /// public Queue() { this.last = null; this.count = 0; } ///
/// 检查队列是否为空。 /// ///
public bool IsEmpty() { return this.last == null; } ///
/// 返回队列中元素的数量。 /// ///
public int Size() { return this.count; } ///
/// 返回队列中的第一个元素(但不让它出队)。 /// ///
public Item Peek() { if (IsEmpty()) throw new InvalidOperationException("Queue underflow"); return this.last.next.item; } ///
/// 将一个新元素加入队列中。 /// ///
要入队的元素。 public void Enqueue(Item item) { Node
oldLast = this.last; this.last = new Node
(); this.last.item = item; this.last.next = this.last; if (oldLast != null) { this.last.next = oldLast.next; oldLast.next = this.last; } count++; } ///
/// 将队列中的第一个元素出队并返回它。 /// ///
public Item Dequeue() { if (IsEmpty()) throw new InvalidOperationException("Queue underflow"); Item item = this.last.next.item; this.last.next = this.last.next.next; this.count--; if (IsEmpty()) this.last = null; return item; } public override string ToString() { StringBuilder s = new StringBuilder(); foreach (Item item in this) { s.Append(item); s.Append(" "); } return s.ToString(); } public IEnumerator
GetEnumerator() { return new QueueEnumerator(this.last); } IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } private class QueueEnumerator : IEnumerator
{ private Node
current; private Node
first; public QueueEnumerator(Node
last) { this.current = new Node
(); this.current.next = last.next; this.first = this.current; } Item IEnumerator
.Current => this.current.item; object IEnumerator.Current => this.current.item; void IDisposable.Dispose() { this.first = null; this.current = null; } bool IEnumerator.MoveNext() { if (this.current.next == first.next) return false; this.current = this.current.next; return true; } void IEnumerator.Reset() { this.current = this.first; } } } public class Node
{ public Item item; public Node
next; }}

Program.cs

using System;namespace _1._3._29{    /*     * 1.3.29     *      * 用环形链表实现 Queue。     * 环形链表也是一条链表,只是没有任何结点的链接为空,且只要链表非空则 last.next 的值为 first。     * 只能使用一个 Node 类型的实例变量(last)。     *      */    class Program    {        static void Main(string[] args)        {            string input = "to be or not to - be - - that - - - is";            string[] s = input.Split(' ');            Queue
queue = new Queue
(); foreach (string n in s) { if (!n.Equals("-")) queue.Enqueue(n); else if (!queue.IsEmpty()) Console.WriteLine(queue.Dequeue()); } Console.WriteLine($"({queue.Size()}) left on queue"); Console.WriteLine(queue); } }}

1.3.30

解答

书中给出了代码,这里说一下递归的实现。

如果说一个链表除了第一个结点剩下的都已经反转了,那么我们就只要把该结点插入到最后就行了(也就是原先的第二个结点之后)。

像这样:

代码
using System;using Generics;namespace _1._3._30{    /*     * 1.3.30     *      * 编写一个函数,接受一条链表的首结点作为参数,     * (破坏性地)将链表反转并返回链表的首结点。     *      */    class Program    {        static void Main(string[] args)        {            Node
first = new Node
(); Node
second = new Node
(); Node
third = new Node
(); Node
fourth = new Node
(); first.item = "first"; second.item = "second"; third.item = "third"; fourth.item = "fourth"; first.next = second; second.next = third; third.next = fourth; fourth.next = null; Node
current = first; while (current != null) { Console.Write(current.item + " "); current = current.next; } first = Reverse(first); Console.WriteLine(); current = first; while (current != null) { Console.Write(current.item + " "); current = current.next; } } //使用书中的递归方式实现 static Node
Reverse
(Node
first) { if (first == null) return null; if (first.next == null) return first; Node
second = first.next; Node
rest = Reverse(second); second.next = first; first.next = null; return rest; } }}

1.3.31

解答

双向链表的插入有顺序,务必当心。

双向链表长这样(似乎有一种画法是把空指针画成“接地”的样子):

删除中间那个:

再插回去:

原则是不要让有用的结点变得无法访问。

代码

DoubleNode<>

using System;using System.Collections;using System.Collections.Generic;using System.Text;namespace _1._3._31{    /*     * 1.3.31     *      * 实现一个嵌套类 DoubleNode 用来构造双向链表,     * 其中每个结点都含有一个指向前驱元素的应用和一项指向后续元素的引用(如果不存在则为 null)。     * 为以下任务实现若干静态方法:     * 在表头插入结点。     * 在表尾插入结点。     * 从表头删除结点。     * 从表尾删除结点。     * 在指定结点之前插入新结点。     * 在指定结点之后插入新结点。     * 删除指定结点。     *      */    public class DoubleLinkList
: IEnumerable
{ private class DoubleNode
{ public T item; public DoubleNode
prev; public DoubleNode
next; } DoubleNode
first; DoubleNode
last; int count; ///
/// 建立一条双向链表。 /// public DoubleLinkList() { this.first = null; this.last = null; this.count = 0; } ///
/// 检查链表是否为空。 /// ///
public bool IsEmpty() { return count == 0; } ///
/// 返回链表中元素的数量。 /// ///
public int Size() { return this.count; } ///
/// 在表头插入一个元素。 /// ///
要插入的元素。 public void InsertFront(Item item) { DoubleNode
node = new DoubleNode
() { item = item, next = this.first, prev = null }; if (this.first != null) { this.first.prev = node; } else { this.last = node; } this.first = node; this.count++; } ///
/// 在表尾插入一个元素。 /// ///
要插入表尾的元素。 public void InsertRear(Item item) { DoubleNode
node = new DoubleNode
() { item = item, next = null, prev = last }; if (this.last != null) { this.last.next = node; } else { this.first = node; } this.last = node; this.count++; } ///
/// 检索指定下标的元素。 /// ///
要检索的下标。 ///
public Item At(int index) { if (index >= count || index < 0) throw new IndexOutOfRangeException(); DoubleNode
current = this.first; for (int i = 0; i < index; ++i) { current = current.next; } return current.item; } ///
/// 返回指定下标的结点。 /// ///
要查找的下标。 ///
private DoubleNode
Find(int index) { if (index >= count || index < 0) throw new IndexOutOfRangeException(); DoubleNode
current = this.first; for (int i = 0; i < index; ++i) { current = current.next; } return current; } ///
/// 在指定位置之前插入一个元素。 /// ///
要插入的元素。 ///
插入位置的下标。 public void InsertBefore(Item item, int index) { if (index == 0) { InsertFront(item); return; } if (index >= count || index < 0) throw new IndexOutOfRangeException(); DoubleNode
current = Find(index); DoubleNode
node = new DoubleNode
() { next = current, prev = current.prev, item = item }; current.prev.next = node; current.prev = node; this.count++; } ///
/// 在指定位置之后插入一个元素。 /// ///
要插入的元素。 ///
查找元素的下标。 public void InsertAfter(Item item, int index) { if (index == count - 1) { InsertRear(item); return; } if (index >= count || index < 0) throw new IndexOutOfRangeException(); DoubleNode
current = Find(index); DoubleNode
node = new DoubleNode
() { prev = current, next = current.next, item = item }; current.next.prev = node; current.next = node; this.count++; } ///
/// 删除表头元素。 /// ///
public Item DeleteFront() { if (IsEmpty()) throw new InvalidOperationException("List underflow"); Item temp = this.first.item; this.first = this.first.next; this.count--; if (IsEmpty()) { this.last = null; } return temp; } ///
/// 删除表尾的元素。 /// ///
public Item DeleteRear() { if (IsEmpty()) throw new InvalidOperationException("List underflow"); Item temp = this.last.item; this.last = this.last.prev; this.count--; if (IsEmpty()) { this.first = null; } else { this.last.next = null; } return temp; } ///
/// 删除指定位置的元素。 /// ///
要删除元素的下标。 ///
public Item Delete(int index) { if (index < 0 || index >= this.count) throw new IndexOutOfRangeException(); if (index == 0) { return DeleteFront(); } if (index == count - 1) { return DeleteRear(); } DoubleNode
current = Find(index); Item temp = current.item; current.prev.next = current.next; current.next.prev = current.prev; count--; return temp; } public override string ToString() { StringBuilder s = new StringBuilder(); foreach (Item i in this) { s.Append(i.ToString()); s.Append(" "); } return s.ToString(); } public IEnumerator
GetEnumerator() { return new DoubleLinkListEnumerator(this.first); } IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } private class DoubleLinkListEnumerator : IEnumerator
{ DoubleNode
current; DoubleNode
first; public DoubleLinkListEnumerator(DoubleNode
first) { this.current = new DoubleNode
(); this.current.next = first; this.first = current; } Item IEnumerator
.Current => current.item; object IEnumerator.Current => current.item; void IDisposable.Dispose() { this.current = null; this.first = null; } bool IEnumerator.MoveNext() { if (this.current.next == null) return false; this.current = this.current.next; return true; } void IEnumerator.Reset() { this.current = this.first; } } }}

Program.cs

using System;namespace _1._3._31{    class Program    {        static void Main(string[] args)        {            DoubleLinkList
linklist = new DoubleLinkList
(); linklist.InsertRear("fourth"); linklist.InsertFront("first"); linklist.InsertAfter("second", 0); linklist.InsertBefore("third", 2); Console.WriteLine(linklist); linklist.DeleteFront(); Console.WriteLine(linklist); linklist.DeleteRear(); Console.WriteLine(linklist); linklist.Delete(1); Console.WriteLine(linklist); Console.WriteLine(linklist.At(0)); } }}

1.3.32

解答

在队列的基础上增加一个在队首插入元素的方法即可。

代码

Steque.cs

using System;using System.Collections;using System.Collections.Generic;using System.Text;namespace _1._3._32{    //API:    //public class Steque
: Ienumerable
// public Steque(); 默认构造函数。 // public bool IsEmpty(); 检查 Steque 是否为空。 // public int Size(); 返回 Steque 中的元素数量。 // public void Push(Item item); 向 Steque 中压入一个元素。 // public Item Pop(); 从 Steque 中弹出一个元素。 // public void Peek(); 返回栈顶元素(但不弹出它)。 // public void Enqueue(Item item); 将一个元素添加入 Steque 中。 public class Steque
: IEnumerable
{ private Node
first; private Node
last; private int count; private class Node
{ public T item; public Node
next; } ///
/// 默认构造函数。 /// public Steque() { this.first = null; this.count = 0; } ///
/// 检查栈是否为空。 /// ///
public bool IsEmpty() { return count == 0; } ///
/// 返回栈内元素的数量。 /// ///
public int Size() { return this.count; } ///
/// 将一个元素压入栈中。 /// ///
要压入栈中的元素。 public void Push(Item item) { Node
oldFirst = first; this.first = new Node
(); this.first.item = item; this.first.next = oldFirst; if (oldFirst == null) { this.last = this.first; } count++; } ///
/// 将一个元素从栈中弹出,返回弹出的元素。 /// ///
public Item Pop() { if (IsEmpty()) throw new InvalidOperationException("Stack Underflow"); Item item = first.item; first = first.next; count--; if (count == 0) { this.last = null; } return item; } ///
/// 将一个元素加入队列中。 /// ///
要入队的元素。 public void Enqueue(Item item) { Node
oldLast = this.last; this.last = new Node
(); this.last.item = item; this.last.next = null; if (IsEmpty()) this.first = this.last; else oldLast.next = this.last; count++; } ///
/// 返回栈顶元素(但不弹出它)。 /// ///
public Item Peek() { if (IsEmpty()) throw new InvalidOperationException("Stack Underflow"); return first.item; } public override string ToString() { StringBuilder s = new StringBuilder(); foreach (Item n in this) { s.Append(n); s.Append(' '); } return s.ToString(); } public IEnumerator
GetEnumerator() { return new StackEnumerator(this.first); } IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } private class StackEnumerator : IEnumerator
{ private Node
current; private Node
first; public StackEnumerator(Node
first) { this.current = new Node
(); this.current.next = first; this.first = this.current; } Item IEnumerator
.Current => current.item; object IEnumerator.Current => current.item; void IDisposable.Dispose() { this.current = null; this.first = null; } bool IEnumerator.MoveNext() { if (this.current.next == null) return false; this.current = this.current.next; return true; } void IEnumerator.Reset() { this.current = this.first; } } }}

Program.cs

using System;namespace _1._3._32{    /*     * 1.3.32     *      * Steque     * 一个以栈为目标的队列(或称 steque),     * 是一种支持 push、pop 和 enqueue 操作的数据类型。     * 为这种抽象数据类定义一份 API 并给出一份基于链表的实现。     *      */    class Program    {        //见 Steque.cs        static void Main(string[] args)        {            Steque
steque = new Steque
(); steque.Push("first"); steque.Push("second"); steque.Push("third"); steque.Enqueue("fourth"); Console.WriteLine(steque.ToString()); steque.Pop(); steque.Pop(); steque.Pop(); steque.Pop(); Console.WriteLine(steque.ToString()); steque.Enqueue("first"); steque.Push("zero"); Console.WriteLine(steque.ToString()); } }}

1.3.33

解答

动态数组这里要注意 first 不要小于零。

代码

Deque 类

using System;using System.Collections;using System.Collections.Generic;namespace _1._3._33{    public class Deque
: IEnumerable
{ private class DoubleNode
{ public T item; public DoubleNode
next; public DoubleNode
prev; } DoubleNode
first; DoubleNode
last; int count; ///
/// 默认构造函数,建立一个双端队列。 /// public Deque() { this.first = null; this.last = null; this.count = 0; } ///
/// 检查队列是否为空。 /// ///
public bool IsEmpty() { return this.count == 0; } ///
/// 返回队列中元素的数量。 /// ///
public int Size() { return this.count; } ///
/// 向左端添加一个元素。 /// ///
要添加的元素。 public void PushLeft(Item item) { DoubleNode
oldFirst = this.first; this.first = new DoubleNode
() { item = item, prev = null, next = oldFirst }; if (oldFirst == null) { this.last = this.first; } else { oldFirst.prev = this.first; } this.count++; } ///
/// 向右端添加一个元素。 /// ///
要添加的元素。 public void PushRight(Item item) { DoubleNode
oldLast = this.last; this.last = new DoubleNode
() { item = item, prev = oldLast, next = null }; if (oldLast == null) { this.first = this.last; } else { oldLast.next = this.last; } this.count++; } ///
/// 从右端删除并返回一个元素。 /// ///
public Item PopRight() { if (IsEmpty()) { throw new InvalidOperationException(); } Item temp = this.last.item; this.last = this.last.prev; this.count--; if (this.last == null) { this.first = null; } else { this.last.next.item = default(Item); this.last.next = null; } return temp; } ///
/// 从左端删除并返回一个元素。 /// ///
public Item PopLeft() { if (IsEmpty()) { throw new InvalidOperationException(); } Item temp = this.first.item; this.first = this.first.next; this.count--; if (this.first == null) { this.last = null; } else { this.first.prev.item = default(Item); this.first.prev = null; } return temp; } public IEnumerator
GetEnumerator() { return new DequeEnumerator(this.first); } IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } private class DequeEnumerator : IEnumerator
{ private DoubleNode
current; private DoubleNode
first; public DequeEnumerator(DoubleNode
first) { this.current = new DoubleNode
(); this.current.next = first; this.current.prev = null; this.first = this.current; } public Item Current => current.item; object IEnumerator.Current => current.item; public void Dispose() { this.current = null; this.first = null; } public bool MoveNext() { if (this.current.next == null) return false; this.current = this.current.next; return true; } public void Reset() { this.current = this.first; } } }}

ResizingArrayDeque 类

using System;using System.Collections;using System.Collections.Generic;namespace _1._3._33{    public class ResizingArrayDeque
: IEnumerable
{ private Item[] deque; private int first; private int last; private int count; ///
/// 默认构造函数,建立一个双向队列。 /// public ResizingArrayDeque() { this.deque = new Item[2]; this.first = 0; this.last = 0; this.count = 0; } ///
/// 检查队列是否为空。 /// ///
public bool IsEmpty() { return this.count == 0; } ///
/// 返回队列中元素的数量。 /// ///
public int Size() { return this.count; } ///
/// 为队列重新分配空间。 /// ///
需要重新分配的空间大小。 private void Resize(int capacity) { if (capacity <= 0) throw new ArgumentException(); Item[] temp = new Item[capacity]; for (int i = 0; i < count; ++i) { temp[i] = this.deque[(this.first + i) % this.deque.Length]; } this.deque = temp; this.first = 0; this.last = this.count; } ///
/// 在队列左侧添加一个元素。 /// ///
要添加的元素 public void PushLeft(Item item) { if (this.count == this.deque.Length) { Resize(2 * this.count); } this.first--; if (this.first < 0) { this.first += this.deque.Length; } this.deque[this.first] = item; this.count++; } public void PushRight (Item item) { if (this.count == this.deque.Length) { Resize(2 * this.count); } this.deque[this.last] = item; this.last = (this.last + 1) % this.deque.Length; this.count++; } public Item PopRight() { if (IsEmpty()) { throw new InvalidOperationException(); } this.last--; if (this.last < 0) { this.last += this.deque.Length; } Item temp = this.deque[this.last]; this.count--; if (this.count > 0 && this.count == deque.Length / 4) Resize(this.deque.Length / 2); return temp; } public Item PopLeft() { if (IsEmpty()) throw new ArgumentException(); Item temp = this.deque[this.first]; this.first = (this.first + 1) % this.deque.Length; this.count--; if (this.count > 0 && this.count == deque.Length / 4) { Resize(this.deque.Length / 2); } return temp; } public IEnumerator
GetEnumerator() { return new ResizingDequeEnumerator(this.deque, this.first, this.count); } IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } private class ResizingDequeEnumerator : IEnumerator
{ private Item[] deque; private int current; private int first; private int count; public ResizingDequeEnumerator(Item[] deque, int first, int count) { this.deque = deque; this.first = first; this.count = count; this.current = -1; } Item IEnumerator
.Current => this.deque[(this.first + this.current) % this.deque.Length]; object IEnumerator.Current => this.deque[(this.first + this.current) % this.deque.Length]; void IDisposable.Dispose() { this.deque = null; this.current = -1; } bool IEnumerator.MoveNext() { if (this.current == this.count - 1) { return false; } this.current++; return true; } void IEnumerator.Reset() { this.current = -1; } } }}

Program.cs

using System;namespace _1._3._33{    /*     * 1.3.33     *      * Deque。     * 一个双向队列(或称 deque)和栈或队列类似,但它同时支持在两端添加或删除元素。     * Deque 能够存储一组元素并支持下表中的 API:     *      * Deque()     * 创建空双向队列。     * Bool isEmpty()     * 双向队列是否为空。     * int size()     * 双向队列中的元素数量。     * void pushLeft(Item item)     * 向左端添加一个新元素。     * void pushRight(Item item)     * 向右端添加一个新元素。     * Item popLeft()     * 从左端删除一个元素。     * Item popRight()     * 从右端删除一个元素。     *      * 编写一个使用双向链表实现这份 API 的 Deque 类,     * 以及一个使用动态数组调整实现这份 API 的 ResizingArrayDeque 类。     *      */    class Program    {        static void Main(string[] args)        {            Deque
a = new Deque
(); ResizingArrayDeque
b = new ResizingArrayDeque
(); a.PushLeft("first"); b.PushLeft("first"); a.PushRight("second"); b.PushRight("second"); Display(a, b); a.PopLeft(); b.PopLeft(); Display(a, b); a.PopRight(); b.PopRight(); Display(a, b); } static void Display(Deque
a, ResizingArrayDeque
b) { foreach (string s in a) { Console.Write(s + " "); } Console.WriteLine(); foreach (string s in b) { Console.Write(s + " "); } Console.WriteLine(); Console.WriteLine(); } }}

1.3.34

解答

在初始化迭代器的时候随机生成一个访问序列,之后按照这个访问序列进行迭代即可。

代码

RandomBag.cs

using System;using System.Collections;using System.Collections.Generic;namespace _1._3._34{    public class RandomBag
: IEnumerable
{ private Item[] bag; private int count; ///
/// 建立一个随机背包。 /// public RandomBag() { this.bag = new Item[2]; this.count = 0; } ///
/// 检查背包是否为空。 /// ///
public bool IsEmpty() { return this.count == 0; } ///
/// 返回背包中元素的数量。 /// ///
public int Size() { return this.count; } ///
/// 向背包中添加一个元素。 /// ///
要向背包中添加的元素。 public void Add(Item item) { if (this.count == this.bag.Length) { Resize(this.count * 2); } this.bag[count] = item; count++; } ///
/// 重新为背包分配内存空间。 /// ///
private void Resize(int capacity) { if (capacity <= 0) throw new ArgumentException(); Item[] temp = new Item[capacity]; for (int i = 0; i < this.count; ++i) { temp[i] = this.bag[i]; } this.bag = temp; } public IEnumerator
GetEnumerator() { return new RandomBagEnumerator(this.bag, this.count); } IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } private class RandomBagEnumerator : IEnumerator
{ private Item[] bag; private int[] sequence; private int current; private int count; public RandomBagEnumerator(Item[] bag, int count) { this.bag = bag; this.current = -1; this.count = count; this.sequence = new int[count]; for (int i = 0; i < this.count; ++i) { this.sequence[i] = i; } Shuffle(sequence, DateTime.Now.Millisecond); } ///
/// 随机打乱数组。 /// ///
需要打乱的数组。 ///
随机种子值。 private void Shuffle(int[] a, int seed) { int N = a.Length; Random random = new Random(seed); for (int i = 0; i < N; ++i) { int r = i + random.Next(N - i); int temp = a[i]; a[i] = a[r]; a[r] = temp; } } Item IEnumerator
.Current => this.bag[this.sequence[this.current]]; object IEnumerator.Current => this.bag[this.sequence[this.current]]; void IDisposable.Dispose() { this.bag = null; this.sequence = null; this.current = -1; } bool IEnumerator.MoveNext() { if (this.current == this.count - 1) return false; this.current++; return true; } void IEnumerator.Reset() { this.current = -1; } } }}

1.3.35

解答

事实上只需要在普通队列的基础上稍作修改就可以了。

出队时先随机选择一个元素,之后让它和最开始的元素做交换,之后正常出队即可。

代码

RandomQueue.cs

using System;namespace _1._3._35{    public class RandomQueue
{ private Item[] queue; private int count; ///
/// 新建一个随机队列。 /// public RandomQueue() { this.queue = new Item[2]; this.count = 0; } ///
/// 判断队列是否为空。 /// ///
public bool IsEmpty() { return this.count == 0; } ///
/// 为队列重新分配内存空间。 /// ///
private void Resize(int capacity) { if (capacity <= 0) { throw new ArgumentException(); } Item[] temp = new Item[capacity]; for (int i = 0; i < this.count; ++i) { temp[i] = this.queue[i]; } this.queue = temp; } ///
/// 向队列中添加一个元素。 /// ///
要向队列中添加的元素。 public void Enqueue(Item item) { if (this.queue.Length == this.count) { Resize(this.count * 2); } this.queue[this.count] = item; this.count++; } ///
/// 从队列中随机删除并返回一个元素。 /// ///
public Item Dequeue() { if (IsEmpty()) { throw new InvalidOperationException(); } Random random = new Random(DateTime.Now.Millisecond); int index = random.Next(this.count); Item temp = this.queue[index]; this.queue[index] = this.queue[this.count - 1]; this.queue[this.count - 1] = temp; this.count--; if (this.count < this.queue.Length / 4) { Resize(this.queue.Length / 2); } return temp; } ///
/// 随机返回一个队列中的元素。 /// ///
public Item Sample() { if (IsEmpty()) { throw new InvalidOperationException(); } Random random = new Random(); int index = random.Next(this.count); return this.queue[index]; } }}

1.3.36

解答

实现方法和 1.3.34 类似,初始化迭代器的时候同时初始化一个随机访问序列。

代码

RandomQueue.cs

using System;using System.Collections;using System.Collections.Generic;namespace _1._3._36{    public class RandomQueue
: IEnumerable
{ private Item[] queue; private int count; ///
/// 新建一个随机队列。 /// public RandomQueue() { this.queue = new Item[2]; this.count = 0; } ///
/// 判断队列是否为空。 /// ///
public bool IsEmpty() { return this.count == 0; } ///
/// 为队列重新分配内存空间。 /// ///
private void Resize(int capacity) { if (capacity <= 0) { throw new ArgumentException(); } Item[] temp = new Item[capacity]; for (int i = 0; i < this.count; ++i) { temp[i] = this.queue[i]; } this.queue = temp; } ///
/// 向队列中添加一个元素。 /// ///
要向队列中添加的元素。 public void Enqueue(Item item) { if (this.queue.Length == this.count) { Resize(this.count * 2); } this.queue[this.count] = item; this.count++; } ///
/// 从队列中随机删除并返回一个元素。 /// ///
public Item Dequeue() { if (IsEmpty()) { throw new InvalidOperationException(); } Random random = new Random(DateTime.Now.Millisecond); int index = random.Next(this.count); Item temp = this.queue[index]; this.queue[index] = this.queue[this.count - 1]; this.queue[this.count - 1] = temp; this.count--; if (this.count < this.queue.Length / 4) { Resize(this.queue.Length / 2); } return temp; } ///
/// 随机返回一个队列中的元素。 /// ///
public Item Sample() { if (IsEmpty()) { throw new InvalidOperationException(); } Random random = new Random(); int index = random.Next(this.count); return this.queue[index]; } public IEnumerator
GetEnumerator() { return new RandomQueueEnumerator(this.queue, this.count); } IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } private class RandomQueueEnumerator : IEnumerator
{ private int current; private int count; private Item[] queue; private int[] sequence; public RandomQueueEnumerator(Item[] queue, int count) { this.count = count; this.queue = queue; this.current = -1; this.sequence = new int[this.count]; for (int i = 0; i < this.count; ++i) { this.sequence[i] = i; } Shuffle(this.sequence, DateTime.Now.Millisecond); } ///
/// 随机打乱数组。 /// ///
需要打乱的数组。 ///
随机种子值。 private void Shuffle(int[] a, int seed) { int N = a.Length; Random random = new Random(seed); for (int i = 0; i < N; ++i) { int r = i + random.Next(N - i); int temp = a[i]; a[i] = a[r]; a[r] = temp; } } Item IEnumerator
.Current => this.queue[this.sequence[this.current]]; object IEnumerator.Current => this.queue[this.sequence[this.current]]; void IDisposable.Dispose() { this.current = -1; this.sequence = null; this.queue = null; } bool IEnumerator.MoveNext() { if (this.current == this.count - 1) return false; this.current++; return true; } void IEnumerator.Reset() { this.current = -1; } } }}

1.3.37

解答

也就是约瑟夫问题,官方给出的 JAVA 版答案:。

报数时将一个人出队然后入队来模拟一个环。

报到 M 个后将那个人出队但不入队(删除)

随后继续循环。

代码
using System;using Generics;namespace _1._3._37{    /*     * 1.3.37     *      * Josephus 问题。     * 在这个古老的问题中,N 个身陷绝境的人一致同意通过以下方式减少生存人数。     * 他们围坐成一圈(位置记作 0 到 N-1)并从第一个人开始报数,     * 报到 M 的人会被杀死,直到最后一个人留下来。     * 传说中 Josephus 找到了不会被杀死的位置。     * 编写一个 Queue 的用例 Josephus,从命令行接受 N 和 M 并打印出人们被杀死的顺序     * (这也将显示 Josephus 在圈中的位置)。     *      */    class Program    {        static void Main(string[] args)        {            int numOfPeople = 7;            int callForDeath = 2;            Queue
queue = new Queue
(); for (int i = 0; i < numOfPeople; ++i) { queue.Enqueue(i); } while (!queue.IsEmpty()) { for (int i = 0; i < callForDeath - 1; ++i) { queue.Enqueue(queue.Dequeue()); } Console.Write(queue.Dequeue() + " "); } Console.WriteLine(); } }}

1.3.38

解答

这里采用“假删除”的方式,对要删除的元素不直接删除而是打上标记,这样就可以维持插入的顺序。

代码

数组实现:

using System;namespace _1._3._38{    class ArrayBasedGeneralizeQueue
{ private Item[] queue; private bool[] IsVisited; private int count; private int first; private int last; ///
/// 建立一个队列。 /// public ArrayBasedGeneralizeQueue() { this.queue = new Item[2]; this.IsVisited = new bool[2]; this.first = 0; this.last = 0; this.count = 0; } ///
/// 检查队列是否为空。 /// ///
public bool IsEmpty() { return this.count == 0; } ///
/// 为队列重新分配空间。 /// ///
private void Resize(int capacity) { Item[] temp = new Item[capacity]; for (int i = 0; i < this.count; ++i) { temp[i] = this.queue[i]; } this.queue = temp; bool[] t = new bool[capacity]; for (int i = 0; i < this.count; ++i) { t[i] = this.IsVisited[i]; } this.IsVisited = t; } ///
/// 向队列中插入一个元素。 /// ///
要插入队列的元素。 public void Insert(Item item) { if (this.count == this.queue.Length) { Resize(this.queue.Length * 2); } this.queue[this.last] = item; this.IsVisited[this.last] = false; this.last++; this.count++; } ///
/// 从队列中删除并返回第 k 个插入的元素。 /// ///
要删除元素的顺序(从 1 开始) ///
public Item Delete(int k) { if (IsEmpty()) { throw new InvalidOperationException(); } if (k > this.last || k < 0) { throw new ArgumentOutOfRangeException(); } if (IsVisited[k - 1] == true) { throw new ArgumentException("this node had been already deleted"); } Item temp = this.queue[k - 1]; this.IsVisited[k - 1] = true; this.count--; return temp; } }}

链表实现:

using System;namespace _1._3._38{    class LinkedListBasedGeneralizeQueue
{ private class Node
{ public T item; public Node
next; public bool IsVisited; } private Node
first; private Node
last; private int count; ///
/// 建立一个队列。 /// public LinkedListBasedGeneralizeQueue() { this.first = null; this.last = null; this.count = 0; } ///
/// 检查数组是否为空。 /// ///
public bool IsEmpty() { return this.first == null; } ///
/// 在队尾插入元素。 /// ///
需要插入的元素。 public void Insert(Item item) { Node
oldLast = this.last; this.last = new Node
() { item = item, IsVisited = false, next = null }; if (oldLast == null) { this.first = this.last; } else { oldLast.next = this.last; } count++; } ///
/// 删除第 k 个插入的结点 /// ///
结点序号(从 1 开始) ///
public Item Delete(int k) { if (k > this.count || k <= 0) { throw new ArgumentOutOfRangeException(); } k--; //找到目标结点 Node
current = this.first; for (int i = 0; i < k; ++i) { current = current.next; } if (current.IsVisited == true) { throw new ArgumentException("this node had been already deleted"); } current.IsVisited = true; return current.item; } }}

1.3.39

解答

可以直接套用队列的实现方式,在满或空时抛出相应异常。

代码
using System;namespace _1._3._39{    class RingBuffer
{ private Item[] buffer; private int count; private int first; //读指针 private int last; //写指针 ///
/// 建立一个缓冲区。 /// ///
缓冲区的大小。 public RingBuffer(int N) { this.buffer = new Item[N]; this.count = 0; this.first = 0; this.last = 0; } ///
/// 检查缓冲区是否已满。 /// ///
public bool IsFull() { return this.count == this.buffer.Length; } ///
/// 检查缓冲区是否为空。 /// ///
public bool IsEmpty() { return this.count == 0; } ///
/// 向缓冲区写入数据。 /// ///
要写入的数据。 public void Write(Item item) { if (IsFull()) { throw new OutOfMemoryException("buffer is full"); } this.buffer[this.last] = item; this.last = (this.last + 1) % this.buffer.Length; this.count++; } ///
/// 从缓冲区读取一个数据。 /// ///
public Item Read() { if (IsEmpty()) { throw new InvalidOperationException(); } Item temp = this.buffer[this.first]; this.first = (this.first + 1) % this.buffer.Length; this.count--; return temp; } }}

1.3.40

解答

每次插入时都先搜索一遍链表,再判定相应动作。

代码
using System;using System.Text;namespace _1._3._40{    class MoveToFront
{ private class Node
{ public T item; public Node
next; } private Node
first; private int count; ///
/// 检查编码组是否为空。 /// ///
public bool IsEmpty() { return this.first == null; } ///
/// 建立一个前移编码组。 /// public MoveToFront() { this.first = null; this.count = 0; } ///
/// 找到相应元素的前驱结点。 /// ///
要寻找的元素。 ///
private Node
Find(Item item) { if (IsEmpty()) { return null; } Node
current = this.first; while (current.next != null) { if (current.next.item.Equals(item)) { return current; } current = current.next; } return null; } ///
/// 前移编码插入。 /// ///
需要插入的元素。 public void Insert(Item item) { Node
temp = Find(item); if (temp == null) { temp = new Node
() { item = item, next = this.first }; this.first = temp; this.count++; } else if (temp != null && this.count != 1) { Node
target = temp.next; temp.next = temp.next.next; target.next = this.first; this.first = target; } } ///
/// 查看第一个元素。 /// ///
public Item Peek() { if (this.first == null) { throw new InvalidOperationException(); } return this.first.item; } public override string ToString() { StringBuilder s = new StringBuilder(); Node
current = this.first; while (current != null) { s.Append(current.item.ToString()); s.Append(" "); current = current.next; } return s.ToString(); } }}

1.3.41

解答

可以按照书上的提示出队再入队,也可以直接用迭代器访问一遍进行复制。

代码
///         /// 复制构造函数。        ///         ///         public Queue(Queue
r) { foreach (Item i in r) { Enqueue(i); } }

1.3.42

解答

直接把链栈的整个链表复制一份即可。

代码
///         /// 复制构造函数。        ///         ///         public Stack(Stack
s) { if (s.first != null) { this.first = new Node
(s.first); for (Node
x = this.first; x.next != null; x = x.next) { x.next = new Node
(x.next); } } this.count = s.count; }

1.3.43

解答

C# 中可以用 Directory 类里面的几个方法来获得文件路径和文件名。

代码
using System;using System.IO;using System.Linq;namespace _1._3._43{    /*     * 1.3.43     *      * 文件列表。     * 文件夹就是一列文件和文件夹的列表。     * 编写一个程序,从命令行接受一个文件夹名作为参数,     * 打印出该文件夹下的所有文件并用递归的方式在所有子文件夹的名下(缩进)列出其下的所有文件。     *      */    class Program    {        static void Main(string[] args)        {            //获取当前目录            string path = Directory.GetCurrentDirectory();            path = Directory.GetParent(path).FullName;            path = Directory.GetParent(path).FullName;            //获取文件            Console.WriteLine(path + "中的所有文件");            Search(path, 0);        }        static void Search(string path, int tabs)        {            string[] dirs = Directory.GetDirectories(path);            string[] files = Directory.GetFiles(path);            foreach (string p in dirs)            {                for (int i = 0; i < tabs; ++i)                {                    Console.Write("  ");                }                Console.WriteLine(p.Split('\\').Last());                Search(p, tabs + 1);            }            foreach (string f in files)            {                for (int i = 0; i < tabs; ++i)                {                    Console.Write("  ");                }                Console.WriteLine(f.Split('\\').Last());            }        }    }}

1.3.44

解答

这里我们使用两个栈来模拟缓冲区。

向左/向右移动 = 从左/右栈弹出相应数量的元素并压入另外一个栈。

插入/删除 = 左栈压入/弹出一个元素。

字符数量 = 左栈数量 + 右栈数量。

代码
using Generics;namespace _1._3._44{    class Buffer    {        private Stack
leftside; private Stack
rightside; ///
/// 建立一个文本缓冲区。 /// public Buffer() { this.leftside = new Stack
(); this.rightside = new Stack
(); } ///
/// 在光标位置插入字符 c。 /// ///
要插入的字符。 public void Insert(char c) { this.leftside.Push(c); } ///
/// 删除并返回光标位置的字符。 /// ///
public char Delete() { return this.leftside.Pop(); } ///
/// 将光标向左移动 k 个位置。 /// ///
光标移动的距离。 public void Left(int k) { for (int i = 0; i < k; ++i) { this.rightside.Push(this.leftside.Pop()); } } ///
/// 将光标向右移动 k 个位置。 /// ///
光标移动的距离。 public void Right(int k) { for (int i = 0; i < k; ++i) { this.leftside.Push(this.rightside.Pop()); } } ///
/// 返回缓冲区中的字符数量。 /// ///
public int Size() { return this.leftside.Size() + this.rightside.Size(); } ///
/// 将缓冲区的内容输出,这将使光标重置到最左端。 /// ///
public string Getstring() { while (!leftside.IsEmpty()) { this.rightside.Push(this.leftside.Pop()); } return rightside.ToString(); } }}

1.3.45

解答

书上已经给出了思路,简单说明一下。

第一问是给定输入判断是否会下溢出,只要记录栈中元素的数量即可,一旦为负数则返回 true。

第二问是给定输出判断是否可能。

对于输出序列中的每一个数,如果栈顶为空或者栈顶数字小于当前输出序列的数,那么就从输入序列中输入数字,直到栈顶数字和当前输出序列中的数字相等。

如果当前输出序列中的数字和栈顶元素相等,从栈中弹出相应元素。

最后如果栈为空则可能,否则不可能。

可以结合习题 1.3.3 的解答查看。

通用解法见下一题。

代码
using System;using Generics;namespace _1._3._45{    /*     * 1.3.45     *      * 栈的可生成性。     * 假设我们的栈测试用例会进行一系列的入栈和出栈操作,     * 序列中的整数 0, 1, ... , N - 1 (按此先后顺序排列)表示入栈操作,N个减号表示出栈操作。     * 设计一个算法,判定给定的混合序列是否会使数组向下溢出     * (你使用的空间量与 N 无关,即不能用某种数据结构存储所有整数)。     * 设计一个线性时间算法判定我们的测试用例能否产生某个给定的排列     * (这取决于出栈操作指令的出现位置)。     *      */    class Program    {        static void Main(string[] args)        {            //给定输入序列,判断是否会出现下溢出。            string input = "- 0 1 2 3 4 5 6 7 8 9 - - - - - - - - -";            Console.WriteLine(IsUnderflow(input.Split(' ')));//True            input = "0 - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 -";            Console.WriteLine(IsUnderflow(input.Split(' ')));//False            //给定输出序列,判定是否可能。            int[] output = { 4, 3, 2, 1, 0, 9, 8, 7, 6, 5 };            Console.WriteLine(IsOutputPossible(output));//True            output = new int[]{ 4, 6, 8, 7, 5, 3, 2, 9, 0, 1};            Console.WriteLine(IsOutputPossible(output));//False        }        ///         /// 判断是否会出现下溢出。        ///         /// 输入序列。        /// 
static bool IsUnderflow(string[] input) { //记录栈中元素数量,如果元素数量小于 0 则会出现下溢出。 int count = 0; foreach (string s in input) { if (count < 0) { return true; } if (s.Equals("-")) { count--; } else { count++; } } return false; } /// /// 判断输出序列是否正确。 /// /// 输出序列。 ///
static bool IsOutputPossible(int[] output) { int input = 0; int N = output.Length; Stack
stack = new Stack
(); foreach (int i in output) { //如果栈为空,则从输入序列中压入一个数。 if (stack.IsEmpty()) { stack.Push(input); input++; } //如果输入序列中的所有数都已经入栈过了,跳出循环。 if (input == N && stack.Peek() != i) { break; } //如果输出序列的下一个数不等于栈顶的数,那么就从输入序列中压入一个数。 while (stack.Peek() != i && input < N) { stack.Push(input); input++; } //如果栈顶的数等于输出的数,弹出它。 if (stack.Peek() == i) { stack.Pop(); } } return stack.IsEmpty(); } }}

1.3.46

解答

这道题的解答参考了这篇博文:。

显然书中的解答已经十分明确,这里简单说明一下:

首先有结论:对于栈顶元素 Sn,栈中所有小于 Sn 的值都以递减形式保存(已经输出的不算)。
表现在输出序列中,Sn 输出之后,如果有小于 Sn 的值输出,其顺序必定是递减的。
例如序列 4 3 2 1 0 9 8 7 6 5
4 输出之后,3 2 1 0 递减输出;9 输出之后,8 7 6 5 递减输出。
依次验证其中的每个值都能满足结论。
而对于序列 4 6 8 7 5 3 2 9 0 1
对于 4,之后的 3 2 1 0 并不是以递减顺序输出的,因此这个序列是不合法的。

1.3.47

解答

这里用的都是链式结构,头尾相接即可。

代码

Queue:

///         /// 在当前队列之后附加一个队列。        ///         /// 需要被附加的队列。        /// 需要附加的队列(将被删除)。        public static Queue
Catenation(Queue
q1, Queue
q2) { if (q1.IsEmpty()) { q1.first = q2.first; q1.last = q2.last; q1.count = q2.count; } else { q1.last.next = q2.first; q1.last = q2.last; q1.count += q2.count; } q2 = null; return q1; }

 

Stack:

///         /// 将两个栈连接。        ///         /// 第一个栈。        /// 第二个栈(将被删除)。        /// 
public static Stack
Catenation(Stack
s1, Stack
s2) { if (s1.IsEmpty()) { s1.first = s2.first; s1.count = s2.count; } else { Node
last = s1.first; while (last.next != null) { last = last.next; } last.next = s2.first; s1.count += s2.count; } s2 = null; return s1; }

 

Steque:

///         /// 将两个 Steque 连接。        ///         /// 第一个 Steque         /// 第二个 Steque (将被删除)        /// 
public static Steque
Catenation(Steque
s1, Steque
s2) { if (s1.IsEmpty()) { s1.first = s2.first; s1.last = s2.last; s1.count = s2.count; } else { s1.last.next = s2.first; s1.count += s2.count; } s2 = null; return s1; }

1.3.48

解答

按照双向队列原本的操作就可以实现,需要维护两个栈的长度以防越界。(左侧栈弹出了右侧栈栈底的内容)

代码
using System;using System.Collections;using System.Collections.Generic;namespace _1._3._48{    public class DeStack
: IEnumerable
{ private class DoubleNode
{ public T item; public DoubleNode
next; public DoubleNode
prev; } DoubleNode
first; DoubleNode
last; int leftcount; int rightcount; ///
/// 默认构造函数,建立一个双端栈。 /// public DeStack() { this.first = null; this.last = null; this.leftcount = 0; this.rightcount = 0; } ///
/// 检查左侧栈是否为空。 /// ///
public bool IsLeftEmpty() { return this.leftcount == 0; } ///
/// 检查右侧栈是否为空。 /// ///
public bool IsRightEmpty() { return this.rightcount == 0; } ///
/// 返回左侧栈中元素的数量。 /// ///
public int LeftSize() { return this.leftcount; } ///
/// 返回右侧栈中元素的数量。 /// ///
public int RightSize() { return this.rightcount; } ///
/// 向左端添加一个元素。 /// ///
要添加的元素。 public void PushLeft(Item item) { DoubleNode
oldFirst = this.first; this.first = new DoubleNode
() { item = item, prev = null, next = oldFirst }; if (oldFirst == null) { this.last = this.first; } else { oldFirst.prev = this.first; } this.leftcount++; } ///
/// 向右端添加一个元素。 /// ///
要添加的元素。 public void PushRight(Item item) { DoubleNode
oldLast = this.last; this.last = new DoubleNode
() { item = item, prev = oldLast, next = null }; if (oldLast == null) { this.first = this.last; } else { oldLast.next = this.last; } this.rightcount++; } ///
/// 从右端删除并返回一个元素。 /// ///
public Item PopRight() { if (IsRightEmpty()) { throw new InvalidOperationException(); } Item temp = this.last.item; this.last = this.last.prev; this.rightcount--; if (this.last == null) { this.first = null; } else { this.last.next.item = default(Item); this.last.next = null; } return temp; } ///
/// 从左端删除并返回一个元素。 /// ///
public Item PopLeft() { if (IsLeftEmpty()) { throw new InvalidOperationException(); } Item temp = this.first.item; this.first = this.first.next; this.leftcount--; if (this.first == null) { this.last = null; } else { this.first.prev.item = default(Item); this.first.prev = null; } return temp; } public IEnumerator
GetEnumerator() { return new DequeEnumerator(this.first); } IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } private class DequeEnumerator : IEnumerator
{ private DoubleNode
current; private DoubleNode
first; public DequeEnumerator(DoubleNode
first) { this.current = new DoubleNode
(); this.current.next = first; this.current.prev = null; this.first = this.current; } public Item Current => current.item; object IEnumerator.Current => current.item; public void Dispose() { this.current = null; this.first = null; } public bool MoveNext() { if (this.current.next == null) return false; this.current = this.current.next; return true; } public void Reset() { this.current = this.first; } } }}

1.3.49

解答

用六个栈即可实现,具体请查看我的这篇博文(有点复杂):。

1.3.50

解答
初始化迭代器的时候记录栈已经进行过的 Pop 和 Push 数,迭代的时候检查这两个值是否改变,一旦改变就抛出异常。
代码

修改后的迭代器代码:

private class StackEnumerator : IEnumerator
{ private Stack
s; private int popcount; private int pushcount; private Node
current; public StackEnumerator(Stack
s) { this.s = s; this.current = s.first; this.popcount = s.popcount; this.pushcount = s.pushcount; } Item IEnumerator
.Current => current.item; object IEnumerator.Current => current.item; void IDisposable.Dispose() { this.current = null; this.s = null; } bool IEnumerator.MoveNext() { if (s.popcount != this.popcount || s.pushcount != this.pushcount) throw new InvalidOperationException("Stack has been modified"); if (this.current.next == null) return false; this.current = this.current.next; return true; } void IEnumerator.Reset() { this.current = this.s.first; } }

: #0000ff;">return this.rightcount; } /// <summary> /// 向左端添加一个元素。 /// </summary> /// <param name="item">要添加的元素。</param> public void PushLeft(Item item) { DoubleNode<Item> oldFirst = this.first; this.first = new DoubleNode<Item>() { item = item, prev = null, next = oldFirst }; if (oldFirst == null) { this.last = this.first; } else { oldFirst.prev = this.first; } this.leftcount++; } /// <summary> /// 向右端添加一个元素。 /// </summary> /// <param name="item">要添加的元素。</param> public void PushRight(Item item) { DoubleNode<Item> oldLast = this.last; this.last = new DoubleNode<Item>() { item = item, prev = oldLast, next = null }; if (oldLast == null) { this.first = this.last; } else { oldLast.next = this.last; } this.rightcount++; } /// <summary> /// 从右端删除并返回一个元素。 /// </summary> /// <returns></returns> public Item PopRight() { if (IsRightEmpty()) { throw new InvalidOperationException(); } Item temp = this.last.item; this.last = this.last.prev; this.rightcount--; if (this.last == null) { this.first = null; } else { this.last.next.item = default(Item); this.last.next = null; } return temp; } /// <summary> /// 从左端删除并返回一个元素。 /// </summary> /// <returns></returns> public Item PopLeft() { if (IsLeftEmpty()) { throw new InvalidOperationException(); } Item temp = this.first.item; this.first = this.first.next; this.leftcount--; if (this.first == null) { this.last = null; } else { this.first.prev.item = default(Item); this.first.prev = null; } return temp; } public IEnumerator<Item> GetEnumerator() { return new DequeEnumerator(this.first); } IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } private class DequeEnumerator : IEnumerator<Item> { private DoubleNode<Item> current; private DoubleNode<Item> first; public DequeEnumerator(DoubleNode<Item> first) { this.current = new DoubleNode<Item>(); this.current.next = first; this.current.prev = null; this.first = this.current; } public Item Current => current.item; object IEnumerator.Current => current.item; public void Dispose() { this.current = null; this.first = null; } public bool MoveNext() { if (this.current.next == null) return false; this.current = this.current.next; return true; } public void Reset() { this.current = this.first; } } } }

1.3.49

题目

栈与队列。

用有限个栈实现一个队列,
保证每个队列操作(在最坏情况下)都只需要常数次的栈操作。

解答

用六个栈即可实现,具体请查看我的这篇博文(有点复杂):。

1.3.50

题目

快速出错的迭代器。

修改 Stack 的迭代器代码,确保一旦用例在迭代器中(通过 push() 或 pop() 操作)修改集合数据就抛出一个 java.util.ConcurrentModificationException 异常。

解答
初始化迭代器的时候记录栈已经进行过的 Pop 和 Push 数,迭代的时候检查这两个值是否改变,一旦改变就抛出异常。
代码

修改后的迭代器代码:

private class StackEnumerator : IEnumerator
{ private Stack
s; private int popcount; private int pushcount; private Node
current; public StackEnumerator(Stack
s) { this.s = s; this.current = s.first; this.popcount = s.popcount; this.pushcount = s.pushcount; } Item IEnumerator
.Current => current.item; object IEnumerator.Current => current.item; void IDisposable.Dispose() { this.current = null; this.s = null; } bool IEnumerator.MoveNext() { if (s.popcount != this.popcount || s.pushcount != this.pushcount) throw new InvalidOperationException("Stack has been modified"); if (this.current.next == null) return false; this.current = this.current.next; return true; } void IEnumerator.Reset() { this.current = this.s.first; } }

转载于:https://www.cnblogs.com/ikesnowy/p/7157826.html

你可能感兴趣的文章
Linux内核分析——可执行程序的装载
查看>>
儿子和女儿——解释器和编译器的区别与联系
查看>>
第一阶段冲刺3
查看>>
父类引用指向子类对象
查看>>
网页如何实现下载功能
查看>>
IT男专用表白程序
查看>>
读《大道至简》第六章感想
查看>>
ef linq 中判断实体中是否包含某集合
查看>>
章三 链表
查看>>
Solution for Concurrent number of AOS' for this application exceeds the licensed number
查看>>
CSE 3100 Systems Programming
查看>>
IntelliJ IDEA 的Project structure说明
查看>>
Java Security(JCE基本概念)
查看>>
Linux Supervisor的安装与使用入门
查看>>
创建 PSO
查看>>
JasperReport报表设计4
查看>>
项目活动定义 概述
查看>>
团队冲刺04
查看>>
我的Python分析成长之路8
查看>>
泛型在三层中的应用
查看>>