算法导论第十二章答案
计算机科学导论第12章参考答案
CHAPTER 12Abstract Data TypesReview Questions1.An abstract data type is a data declaration packaged together with the operationsthat are meaningful for the data type with the implementation hidden from the user.3.A linear list is a list in which each element has a unique successor.5.Two common implementations of a general list are an array and a linked list.7.A push operation adds an element to the top of the stack while a pop operationremoves an element from the top of the stack. A push can put the stack in an over-flow condition while a pop can put the stack in an underflow condition.9.The enqueue operation adds an element to the rear of a queue. The dequeue opera-tion removes the element at the front of the queue. The enqueue operation couldput the queue in an overflow state while the dequeue could put the queue in anunderflow state.11.A depth first traversal processes all of the nodes in one subtree before processingall of the nodes in the other subtree. In a breadth first traversal, all the nodes at onelevel are processed before moving on to the next level.13.In a depth-first traversal, all of a vertex's descendents are processed before movingto an adjacent vertex. In a breadth-first traversal, all adjacent vertices of a vertexare processed before going to the next level.15.A network is a graph with weighted lines.Multiple-Choice Questions17.d19.c21.a23.a25.b27.d29.a34CHAPTER 12ABSTRACT DATA TYPES31.c33.c35.d37.d39.c41.b43.a45.d47.a49.b51.b53.aExercises55.(top) 6 5 (bottom)57.moveStackInput: Source stack (s1) and destination stack (s2)1. While s1 is not empty1.1 push ( s2, pop(s1) )End loopEnd59.catStackInput: Source stack (s2) and destination stack (s1)1. While s2 is not empty1.1 push ( s1, pop(s2) )End loopEnd61.compareStackInput: The two stacks to compare (s1 and s2)1. Allocate memory for two temporary stacks (Temp1 and Temp2)2. copyStack ( s1, Temp1 ) (see #58)3. copyStack ( s2, Temp2 ) (see #58)4. While Temp1 is not empty AND Temp2 is not empty4.1 TempValue1 = pop ( Temp1 )4.2 TempValue2 = pop ( Temp2 )4.3 If TempValue1 is not equal to TempValue2SECTION 54.3.1 Return falseEnd ifEnd loop5. If Temp1 is not empty OR Temp2 is not empty5.1 Return falseEnd if6. Return trueEnd63.emptyQueueInput: Queue to empty (q3)1. While q3 is not empty1.1 dequeue( q3 )End loopEnd65.copyQueueInput: Source queue (q2) and destination queue (q3)1. Allocate memory for a temporary queue (Temp)2. While q2 is not empty2.1 enqueue ( Temp, dequeue(q2) )End loop3. While Temp is not empty3.1 TempValue = dequeue(Temp)3.2 enqueue ( q2, TempValue )3.3 enqueue ( q3, TempValue )End loopEnd67.compareQueueInput: The two queues to compare (q1 and q2)1. Allocate memory for two temporary queues (Temp1 and Temp2)2. copyQueue ( q1, Temp1 ) (see #65)3. copyQueue ( q2, Temp2 ) (see #65)4. While Temp1 is not empty AND Temp2 is not empty4.1 TempValue1 = dequeue ( Temp1 )4.2 TempValue2 = dequeue ( Temp2 )4.3 If TempValue1 is not equal to TempValue24.3.1 Return falseEnd if6CHAPTER 12ABSTRACT DATA TYPESEnd loop5. If Temp1 is not empty OR Temp2 is not empty5.1 Return falseEnd if6. Return trueEnd69. See Figure 12.1Figure 12.1Exercise 6971.This tree cannot be drawn because it is not a valid binary tree. Node C must be theroot because it is listed last in the postorder traversal. From the inorder traversal,we see that nodes A, B, and D must be in the left subtree (because they are listed tothe left of the root) and that nodes E, F, and G are in the right subtree. Lookingback at the postorder list, however, we see that nodes G and F are listed first,which is not possible.73.Assuming that arcs are stored in sequence by their destination, the traversal is: A,G, F, H, D, E, C, B75.See Figure 12.2.Figure 12.2Exercise 75SECTION 7 77.See Figure 12.3.Figure 12.3Exercise 778CHAPTER 12ABSTRACT DATA TYPES。
算法导论课程作业答案
算法导论课程作业答案Introduction to AlgorithmsMassachusetts Institute of Technology 6.046J/18.410J Singapore-MIT Alliance SMA5503 Professors Erik Demaine,Lee Wee Sun,and Charles E.Leiserson Handout10Diagnostic Test SolutionsProblem1Consider the following pseudocode:R OUTINE(n)1if n=12then return13else return n+R OUTINE(n?1)(a)Give a one-sentence description of what R OUTINE(n)does.(Remember,don’t guess.) Solution:The routine gives the sum from1to n.(b)Give a precondition for the routine to work correctly.Solution:The value n must be greater than0;otherwise,the routine loops forever.(c)Give a one-sentence description of a faster implementation of the same routine. Solution:Return the value n(n+1)/2.Problem2Give a short(1–2-sentence)description of each of the following data structures:(a)FIFO queueSolution:A dynamic set where the element removed is always the one that has been in the set for the longest time.(b)Priority queueSolution:A dynamic set where each element has anassociated priority value.The element removed is the element with the highest(or lowest)priority.(c)Hash tableSolution:A dynamic set where the location of an element is computed using a function of the ele ment’s key.Problem3UsingΘ-notation,describe the worst-case running time of the best algorithm that you know for each of the following:(a)Finding an element in a sorted array.Solution:Θ(log n)(b)Finding an element in a sorted linked-list.Solution:Θ(n)(c)Inserting an element in a sorted array,once the position is found.Solution:Θ(n)(d)Inserting an element in a sorted linked-list,once the position is found.Solution:Θ(1)Problem4Describe an algorithm that locates the?rst occurrence of the largest element in a?nite list of integers,where the integers are not necessarily distinct.What is the worst-case running time of your algorithm?Solution:Idea is as follows:go through list,keeping track of the largest element found so far and its index.Update whenever necessary.Running time isΘ(n).Problem5How does the height h of a balanced binary search tree relate to the number of nodes n in the tree? Solution:h=O(lg n) Problem 6Does an undirected graph with 5vertices,each of degree 3,exist?If so,draw such a graph.If not,explain why no such graph exists.Solution:No such graph exists by the Handshaking Lemma.Every edge adds 2to the sum of the degrees.Consequently,the sum of the degrees must be even.Problem 7It is known that if a solution to Problem A exists,then a solution to Problem B exists also.(a)Professor Goldbach has just produced a 1,000-page proof that Problem A is unsolvable.If his proof turns out to be valid,can we conclude that Problem B is also unsolvable?Answer yes or no (or don’t know).Solution:No(b)Professor Wiles has just produced a 10,000-page proof that Problem B is unsolvable.If the proof turns out to be valid,can we conclude that problem A is unsolvable as well?Answer yes or no (or don’t know).Solution:YesProblem 8Consider the following statement:If 5points are placed anywhere on or inside a unit square,then there must exist two that are no more than √2/2units apart.Here are two attempts to prove this statement.Proof (a):Place 4of the points on the vertices of the square;that way they are maximally sepa-rated from one another.The 5th point must then lie within √2/2units of one of the other points,since the furthest from the corners it can be is the center,which is exactly √2/2units fromeach of the four corners.Proof (b):Partition the square into 4squares,each with a side of 1/2unit.If any two points areon or inside one of these smaller squares,the distance between these two points will be at most √2/2units.Since there are 5points and only 4squares,at least two points must fall on or inside one of the smaller squares,giving a set of points that are no more than √2/2apart.Which of the proofs are correct:(a),(b),both,or neither (or don’t know)?Solution:(b)onlyProblem9Give an inductive proof of the following statement:For every natural number n>3,we have n!>2n.Solution:Base case:True for n=4.Inductive step:Assume n!>2n.Then,multiplying both sides by(n+1),we get(n+1)n!> (n+1)2n>2?2n=2n+1.Problem10We want to line up6out of10children.Which of the following expresses the number of possible line-ups?(Circle the right answer.)(a)10!/6!(b)10!/4!(c) 106(d) 104 ·6!(e)None of the above(f)Don’t knowSolution:(b),(d)are both correctProblem11A deck of52cards is shuf?ed thoroughly.What is the probability that the4aces are all next to each other?(Circle theright answer.)(a)4!49!/52!(b)1/52!(c)4!/52!(d)4!48!/52!(e)None of the above(f)Don’t knowSolution:(a)Problem12The weather forecaster says that the probability of rain on Saturday is25%and that the probability of rain on Sunday is25%.Consider the following statement:The probability of rain during the weekend is50%.Which of the following best describes the validity of this statement?(a)If the two events(rain on Sat/rain on Sun)are independent,then we can add up the twoprobabilities,and the statement is true.Without independence,we can’t tell.(b)True,whether the two events are independent or not.(c)If the events are independent,the statement is false,because the the probability of no rainduring the weekend is9/16.If they are not independent,we can’t tell.(d)False,no matter what.(e)None of the above.(f)Don’t know.Solution:(c)Problem13A player throws darts at a target.On each trial,independentlyof the other trials,he hits the bull’s-eye with probability1/4.How many times should he throw so that his probability is75%of hitting the bull’s-eye at least once?(a)3(b)4(c)5(d)75%can’t be achieved.(e)Don’t know.Solution:(c),assuming that we want the probability to be≥0.75,not necessarily exactly0.75.Problem14Let X be an indicator random variable.Which of the following statements are true?(Circle all that apply.)(a)Pr{X=0}=Pr{X=1}=1/2(b)Pr{X=1}=E[X](c)E[X]=E[X2](d)E[X]=(E[X])2Solution:(b)and(c)only。
《算法导论》习题答案
Chapter2 Getting Start2.1 Insertion sort2.1.2 将Insertion-Sort 重写为按非递减顺序排序2.1.3 计算两个n 位的二进制数组之和2.2 Analyzing algorithms2.2.1将函数32/10001001003n n n --+用符号Θ表示2.2.2写出选择排序算法selection-sort当前n-1个元素排好序后,第n 个元素已经是最大的元素了.最好时间和最坏时间均为2()n Θ2.3 Designing algorithms2.3.3 计算递归方程的解22()2(/2)2,1k if n T n T n n if n for k =⎧=⎨+ = >⎩ (1) 当1k =时,2n =,显然有()lg T n n n =(2) 假设当k i =时公式成立,即()lg 2lg22i i i T n n n i ===⋅,则当1k i =+,即12i n +=时,111111()(2)2(2)222(1)22lg(2)lg i i i i i i i i T n T T i i n n ++++++==+=⋅+=+== ()lg T n n n ∴ =2.3.4 给出insertion sort 的递归版本的递归式(1)1()(1)()1if n T n T n n if n Θ =⎧=⎨-+Θ >⎩2.3-6 使用二分查找来替代insertion-sort 中while 循环内的线性扫描,是否可以将算法的时间提高到(lg )n n Θ?虽然用二分查找法可以将查找正确位置的时间复杂度降下来,但是移位操作的复杂度并没有减少,所以最坏情况下该算法的时间复杂度依然是2()n Θ2.3-7 给出一个算法,使得其能在(lg )n n Θ的时间内找出在一个n 元素的整数数组内,是否存在两个元素之和为x首先利用快速排序将数组排序,时间(lg )n n Θ,然后再进行查找: Search(A,n,x)QuickSort(A,n);i←1; j←n;while A[i]+A[j]≠x and i<jif A[i]+A[j]<xi←i+1elsej←j -1if A[i]+A[j]=xreturn trueelsereturn false时间复杂度为)(n Θ。
《算法导论(第二版)》(中文版)课后答案
5
《算法导论(第二版) 》参考答案 do z←y 调用之前保存结果 y←INTERVAL-SEARCH-SUBTREE(y, i) 如果循环是由于y没有左子树,那我们返回y 否则我们返回z,这时意味着没有在z的左子树找到重叠区间 7 if y≠ nil[T] and i overlap int[y] 8 then return y 9 else return z 5 6 15.1-5 由 FASTEST-WAY 算法知:
15
lg n
2 lg n1 1 2cn 2 cn (n 2 ) 2 1
4.3-1 a) n2 b) n2lgn c) n3 4.3-4
2
《算法导论(第二版) 》参考答案 n2lg2n 7.1-2 (1)使用 P146 的 PARTION 函数可以得到 q=r 注意每循环一次 i 加 1,i 的初始值为 p 1 ,循环总共运行 (r 1) p 1次,最 终返回的 i 1 p 1 (r 1) p 1 1 r (2)由题目要求 q=(p+r)/2 可知,PARTITION 函数中的 i,j 变量应该在循环中同 时变化。 Partition(A, p, r) x = A[p]; i = p - 1; j = r + 1; while (TRUE) repeat j--; until A[j] <= x; repeat i++; until A[i] >= x; if (i < j) Swap(A, i, j); else return j; 7.3-2 (1)由 QuickSort 算法最坏情况分析得知:n 个元素每次都划 n-1 和 1 个,因 为是 p<r 的时候才调用,所以为Θ (n) (2)最好情况是每次都在最中间的位置分,所以递推式是: N(n)= 1+ 2*N(n/2) 不难得到:N(n) =Θ (n) 7.4-2 T(n)=2*T(n/2)+ Θ (n) 可以得到 T(n) =Θ (n lgn) 由 P46 Theorem3.1 可得:Ω (n lgn)
高等数学第12章课后习题答案(科学出版社).
习题 12.11. 判断下列方程是几阶微分方程:;)1(2y x dxdy +=;042)2(2=+-⎪⎭⎫⎝⎛x dx dy dx dy x;052)3(322=+⎪⎭⎫⎝⎛-xy dx dy dx y d x 2334(4)2()1xy x y x y x '''++=+.解 (1)是一阶线性微分方程; (2)是一阶非线性微分方程; (3)是二阶非线性微分方程; (4)是二阶非线性微分方程.2. 指出下列各题中的函数是否为所给微分方程的解:(1)2xy y '=,25y x =; (2)0y y ''+=,3sin 4cos y x x =-; (3)20y y y '''-+=,2e x y x =; (4)2()0xy x y yy ''''++=,y x =. 解 (1)是; (2)是; (3)不是; (4)不是二阶非线性微分方程.3. 验证函数x C x y sin )(2+=(C 为任意常数)是方程0sin 2cot =--x x x y dxdy的通解, 并求满足初始条件0|2==πx y 的特解.解 要验证一个函数是否是方程的通解,只要将函数代入方程,看是否恒等,再看函数式中所含的独立的任意常数的个数是否与方程的阶数相同.将x C x y sin )(2+=求一阶导数,得dxdy,cos )(sin 22x C x x x ++= 把y 和dxdy代入方程左边得 x x x y dxdysin 2cot --x x x x C x x C x x x sin 2cot sin )(cos )(sin 222-+-++=.0≡ 因方程两边恒等,且y 中含有一个任意常数,故x C x y sin )(2+=是题设方程的通解. 将初始条件02==πx y 代入通解x C x y sin )(2+=中,得C +=402π .42π-=C 从而所求特解为 .s i n422x x y ⎪⎪⎭⎫⎝⎛-=π 4.写出由下列条件确定的曲线所满足的微分方程.(1) 一曲线通过原点,并且它在(,)x y 处的切线斜率等于2x y +; (2) 一曲线通过点(2,3),它在两坐标轴间的任一切线段均被切点所平分.解:由题意,2y x y '=+,00x y==解:设该曲线的方程为()y f x =,(,)x y 为其上任意一点,该点处的切线斜率为y ',过该点的切线方程为()Y y y X x '-=-。
(word完整版)第十二章习题答案new
1、分析电子衍射与X 衍射有何异同? 答:相同点:① 都是以满足布拉格方程作为产生衍射的必要条件。
② 两种衍射技术所得到的衍射花样在几何特征上大致相似。
不同点:① 电子波的波长比x 射线短的多,在同样满足布拉格条件时,它的衍射角很小,约为10-2rad 。
而X 射线产生衍射时,其衍射角最大可接近2。
② 在进行电子衍射操作时采用薄晶样品,增加了倒易阵点和爱瓦尔德球相交截的机会,使衍射条件变宽。
③ 因为电子波的波长短,采用爱瓦尔德球图解时,反射球的半径很大,在衍射角θ较小的范围内反射球的球面可以近似地看成是一个平面,从而也可以认为电子衍射产生的衍射斑点大致分布在一个二维倒易截面内。
④ 原子对电子的散射能力远高于它对x 射线的散射能力,故电子衍射束的强度较大,摄取衍射花样时曝光时间仅需数秒钟。
2、倒易点阵与正点阵之间关系如何?倒易点阵与晶体的电子衍射斑点之间有何对应关系?答:倒易点阵是与正点阵相对应的量纲为长度倒数的一个三维空间点阵,通过倒易点阵可以把晶体的电子衍射斑点直接解释成晶体相对应晶面的衍射结果,可以认为电子衍射斑点就是与晶体相对应的倒易点阵某一截面上阵点排列的像。
关系:① 倒易矢量g hkl 垂直于正点阵中对应的(hkl )晶面,或平行于它的法向N hkl ② 倒易点阵中的一个点代表正点阵中的一组晶面③ 倒易矢量的长度等于点阵中的相应晶面间距的倒数,即g hkl =1/d hkl④ 对正交点阵有a *//a ,b *//b ,c *//c ,a *=1/a ,b *=1/b ,c *=1/c 。
⑤ 只有在立方点阵中,晶面法向和同指数的晶向是重合的,即倒易矢量g hkl 是与相应指数的晶向[hkl]平行 ⑥ 某一倒易基矢量垂直于正交点阵中和自己异名的二基矢所成平面。
3、用爱瓦尔德图解法证明布拉格定律。
证:如图,以入射X 射线的波长λ的倒数为半径作一球(厄瓦尔德球),将试样放在球心O 处,入射线经试样与球相交于O*;以O*为倒易原点,若任一倒易点G 落在厄瓦尔德球面上,则G 对应的晶面满足衍射条件产生衍射。
算法导论 第三版 第十二章 答案 英
3
Algorithm 1 PREORDER-TREE-WALK(x) if x = N IL then print x PREORDER-TREE-WALK(x.left) PREORDER-TREE-WALK(x.right) end if return Algorithm 2 POSTORDER-TREE-WALK(x) if x = N IL then POSTORDER-TREE-WALK(x.left) POSTORDER-TREE-WALK(x.right) print x end if return
Exercise 12.2-3
Algorithm 5 TREE-PREDECESSOR(x) if x.lef t = N IL then return TREE-MAXIMUM(x.left) end if y = x.p while y = N IL and x == y.lef t do x=y y = y.p end while return y Exercise 12.2-4 Suppose we search for 10 in this tree. Then A = {9}, B = {8, 10} and C = ∅, and Professor Bunyan’s claim fails since 8 < 9. 8
Chapter 12
Michelle Bodnar, Andrew Lohr April 12, 2016
Exercise 12.1-1 Anytime that a node has a single child, treat it as the right child, with the left child being NIL 10
算法导论(第二版)习题答案(英文版)
Last update: December 9, 2002
1.2 − 2 Insertion sort beats merge sort when 8n2 < 64n lg n, ⇒ n < 8 lg n, ⇒ 2n/8 < n. This is true for 2 n 43 (found by using a calculator). Rewrite merge sort to use insertion sort for input of size 43 or less in order to improve the running time. 1−1 We assume that all months are 30 days and all years are 365.
n
Θ
i=1
i
= Θ(n2 )
This holds for both the best- and worst-case running time. 2.2 − 3 Given that each element is equally likely to be the one searched for and the element searched for is present in the array, a linear search will on the average have to search through half the elements. This is because half the time the wanted element will be in the first half and half the time it will be in the second half. Both the worst-case and average-case of L INEAR -S EARCH is Θ(n). 3
算法导论 答案
算法导论答案算法导论是计算机科学领域中一门重要的课程,其目的是介绍和探讨算法的基本原理和设计方法。
本文将从几个不同角度来讨论算法导论的主题,包括算法的定义、算法分析、算法设计等,并提供一些常见的算法应用示例。
一、算法的定义与特点算法是一个用于完成特定任务的有限一系列指令或规则的集合。
算法的设计应具备以下几个特点:确定性、有穷性、可行性和输入/输出。
1. 确定性:对于给定的输入,算法的每个步骤都必须是明确且唯一的。
不同的输入应得到不同的输出。
2. 有穷性:算法必须经过有限的步骤后能终止。
这是因为计算机程序需要在有限时间内完成,而无限循环的算法则无法给出结果。
3. 可行性:算法的每个步骤都应该是可行执行的,即能够在可接受的时间内完成。
4. 输入/输出:算法应该具有输入和输出,即根据给定的输入,通过算法能够得到相应的输出。
二、算法的分析与效率评估算法的分析与效率评估是算法导论的重要内容。
在设计和选择算法时,需要考虑到其执行时间和内存需求等方面。
1. 时间复杂度:用于衡量算法所需执行的时间。
常见的时间复杂度表示方法有大O记法,例如O(n)、O(nlogn)等。
时间复杂度越低,算法执行效率越高。
2. 空间复杂度:用于衡量算法所需的内存空间。
空间复杂度的衡量单位通常是字节或比特。
与时间复杂度一样,空间复杂度越低,算法的内存需求越小。
三、算法的设计方法算法设计是算法导论的核心内容之一,主要包括贪心算法、分治算法、动态规划算法等。
1. 贪心算法:贪心算法是一种基于每一步局部最优解的策略来解决问题的算法。
它常应用于问题的最优解为局部最优解的情况,但不一定能得到全局最优解。
2. 分治算法:分治算法是一种将问题划分为多个相互独立的子问题,再合并子问题的解来得到整体解的算法。
适合解决规模较大且问题可被划分的情况。
3. 动态规划算法:动态规划算法是一种将复杂问题拆分为更小、更简单的子问题来解决的算法。
它利用了子问题的重叠性质,将子问题的解保存起来,避免了重复计算。
算法导论(第二版)课后习题解答
Θ
i=1
i
= Θ(n2 )
This holds for both the best- and worst-case running time. 2.2 − 3 Given that each element is equally likely to be the one searched for and the element searched for is present in the array, a linear search will on the average have to search through half the elements. This is because half the time the wanted element will be in the first half and half the time it will be in the second half. Both the worst-case and average-case of L INEAR -S EARCH is Θ(n). 3
Solutions for Introduction to algorithms second edition
Philip Bille
The author of this document takes absolutely no responsibility for the contents. This is merely a vague suggestion to a solution to some of the exercises posed in the book Introduction to algorithms by Cormen, Leiserson and Rivest. It is very likely that there are many errors and that the solutions are wrong. If you have found an error, have a better solution or wish to contribute in some constructive way please send a message to beetle@it.dk. It is important that you try hard to solve the exercises on your own. Use this document only as a last resort or to check if your instructor got it all wrong. Please note that the document is under construction and is updated only sporadically. Have fun with your algorithms. Best regards, Philip Bille
算法导论中文版答案
24.2-3
24.2-4
24.3-1 见图 24-6 24.3-2
24.3-3
24.3-4 24.3-5 24.3-6
24.3-7
24.3-8 这种情况下不会破坏已经更新的点的距离。 24.4**** 24.5****
25.1-1 见图 25-1 25.1-2 为了保证递归定义式 25.2 的正确性 25.1-3
8.3-3 8.3-4
8.3-5(*) 8.4-1 见图 8-4 8.4-2
8.4-3 3/2,1/2 8.4-4(*) 8.4-5(*)
9.1-1
9.1-2 9.2-1 9.3-1
第九章
9.3-2 9.3-3
9.3-4 9.3-5
9.3-6 9.3-7
9.3-8
9.3-9
15.1-1
6.4-4
6.4-5
6.5-1 据图 6-5 6.5-2
6.5-3 6.5-4 6.5-5
6.5-6 6.5-7
6.5-8
7.1-1 见图 7-1 7.1-2
7.1-3 7.1-4 7.2-1 7.2-2
7.2-3 7.2-4 7.2-5
第七章
7.2-6 7.3-1
7.3-2
7.4-1 7.4-2
5.3-6
6.1-1 6.1-2 6.1-3 6.1-4 6.1-5 6.1-6
第6章
6.1-7
6.2-1 见图 6-2 6.2-2
6.2-3
6.2-4
6.2-5 对以 i 为根结点的子树上每个点用循环语句实现 6.2-6
6.3-1
见图 6-3 6.3-2
6.3-3
6.4-1 见图 6-4 6.4-2 HEAPSORT 仍然正确,因为每次循环的过程中还是会运行 MAX-HEAP 的过程。 6.4-3
数据结构与算法分析 第12章 答案 Larry Nyhoff 清华大学出版社
found = false; loc = 0; while (!found && loc < n) {
if (item == x[loc]) found = true;
int start, bool & found, int & loc) /*------------------------------------------------------------------------
Recursively linear search a list stored in an array x for an item.
{ found = false; locptr = first; NodePointer prev = 0; for (;;) { if (found || locptr == 0) return; if (item == locptr->data) found = true; else { prevptr = locptr; locptr = locptr->next; } } if (found && locptr != first) // Move to front { prev->next = locptr->next; locptr->next = first; first = locptr; }
Self-organizing linear search of a list stored in an array x for an item.
算法导论中文版答案
} cout<<len<<endl; } return 0; } 15.5-1
15.5-2 15.5-3
15.5-4
16.1-1
第 16 章
16.1-2 16.1-3
16.1-4 16.2-1 16.2-2
16.2-3
16.2-4
16.2-5 16.2-6
16.2-7
25.3-6
5.3-6
6.1-1 6.1-2 6.1-3 6.1-4 6.1-5 6.1-6
第6章
6.1-7
6.2-1 见图 6-2 6.2-2
6.2-3
6.2-4
6.2-5 对以 i 为根结点的子树上每个点用循环语句实现 6.2-6
6.3-1
见图 6-3 6.3-2
6.3-3
6.4-1 见图 6-4 6.4-2 HEAPSORT 仍然正确,因为每次循环的过程中还是会运行 MAX-HEAP 的过程。 6.4-3
6.4-4
6.4-5
6.5-1 据图 6-5 6.5-2
6.5-3 6.5-4 6.5-5
6.5-6 6.5-7
6.5-8
7.1-1 见图 7-1 7.1-2
7.1-3 7.1-4 7.2-1 7.2-2
7.2-3 7.2-4 7.2-5
第七章
7.2-6 7.3-1
7.3-2
7.4-1 7.4-2
16.3-1 16.3-2
16.3-3 16.3-4
16.3-5
16.3-6 那就推广到树的结点有三个孩子结点,证明过程同引理 16.3 的证明。 16.3-7 16.3-8
第 24 章
24.1-1 同源顶点 s 的运行过程,见图 24-4 24.1-2
各门课程课后答案
经济金融[PDF [Word [Word [Word [Word 格式 ] 《会计学原理》同步练习题答案格式 ]《成本会计》习题及答案(自学推荐,格式 ]《成本会计》配套习题集参考答案格式 ]《实用成本会计》习题答案格式 ]《会计电算化》教材习题答案(09 年)23 页)[JPG 格式 ] 会计从业《基础会计》课后答案[Word 格式 ]《现代西方经济学(微观经济学)》笔记与课后习题详解(第[Word 格式 ]《宏观经济学》习题答案(第七版,多恩布什)[Word 格式 ]《国际贸易》课后习题答案(海闻P.林德特王新奎)[PDF 格式 ] 《西方经济学》习题答案(第三版,高鸿业)可直接打印[Word 格式 ]《金融工程》课后题答案(郑振龙版)[Word 格式 ]《宏观经济学》课后答案(布兰查德版)3 版,宋承先)[JPG 格式 ] 《投资学》课后习题答案(英文版,牛逼版)[PDF 格式 ] 《投资学》课后习题答案(博迪,第四版)[Word 格式 ]《微观经济学》课后答案(高鸿业版)[Word 格式 ]《公司理财》课后答案(英文版,第六版)[Word 格式 ]《国际经济学》教师手册及课后习题答案(克鲁格曼,第六版)[Word 格式 ]《金融市场学》课后习题答案(张亦春,郑振龙,第二版)[PDF 格式 ] 《金融市场学》电子书(张亦春,郑振龙,第二版)[Word 格式 ]《微观经济学》课后答案(平狄克版)[Word 格式 ]《中级财务会计》习题答案(第二版,刘永泽)[PDF 格式 ] 《国际经济学》习题答案(萨尔瓦多,英文版)[JPG 格式 ] 《宏观经济学》课后答案(曼昆,中文版)[PDF 格式 ] 《宏观经济学》答案(曼昆,第五版,英文版)pdf 格式[Word 格式 ]《技术经济学概论》(第二版)习题答案[Word 格式 ]曼昆《经济学原理》课后习题解答[PDF 格式 ] 西方经济学(高鸿业版)教材详细答案[Word 格式 ]完整的英文原版曼昆宏观、微观经济学答案[Word 格式 ]《金融市场学》课后答案(郑振龙版)化学物理[Word 格式 ]《固体物理》习题解答(方俊鑫版)[Word 格式 ]《简明结构化学》课后习题答案(第三版,夏少武)[Word 格式 ]《生物化学》复习资料大全( 3 套试卷及答案 +各章习题集)[PDF 格式 ] 《光学教程》习题答案(第四版,姚启钧原著)[Word 格式 ]《流体力学》实验分析答案(浙工大版)[Word 格式 ]《高分子化学》课后习题答案(第四版,潘祖仁主编)[PDF 格式 ] 《化工热力学》习题与习题答案(含各种版本)[Word 格式 ]《材料力学》习题答案[Word 格式 ]《量子力学导论》习题答案(曾谨言版,北京大学)[PDF 格式 ] 《理论力学》习题答案(动力学和静力学)[Word 格式 ]《大学物理》完整习题答案[PPT 格式 ] 流体输配管网习题详解(重点)[PDF 格式 ] 《结构化学基础》习题答案(周公度,北大版)[PDF 格式 ] 《物理化学》习题答案与课件集合(南大)[Word 格式 ]《传热学》课后习题答案(第四版)[Word 格式 ]《控制电机》习题答案[PDF 格式 ] 《化工原理答案》课后习题答案(高教出版社,王志魁主编,第三版)[PDF 格式 ] 《工程力学》课后习题答案(梅凤翔主编)[PDG 格式 ]《工程电磁场导论》习题详解[PDF 格式 ] 《材料力学》习题答案(单辉祖,北京航空航天大学)[Word 格式 ]《热工基础》习题答案(张学学主编,第二版,高等教育出版社)[Word 格式 ]《大学物理实验》实验题目参考答案(第 2 版,中国林业出版社)[Word 格式 ]《大学物理基础教程》课后习题答案(第二版,等教育出版社)[Word 格式 ]《水力学》习题答案(李炜,徐孝平主编,武汉水利电力大学出版社)[PDF 格式 ] 《普通物理学教程电磁学》课后习题答案(梁灿斌,第 2 版)[Word 格式 ]《激光原理与激光技术》习题答案完整版(北京工业大学出版社)[Word 格式 ]《固体物理》习题解答(阎守胜版)[PPT 格式 ] 《仪器分析》课后答案(第三版,朱明华编)[Word 格式 ]《高分子化学》习题答案(第四版)[PDF 格式 ] 《物理化学》习题答案(南大,第五版)[PPT 格式 ] 《高频电子线路》习题参考答案(第四版)[PDF 格式 ] 《原子物理学》习题答案(褚圣麟版)[PPT 格式 ] 《分析力学》习题答案[Word 格式 ]《分析化学》习题答案(第三版,上册,高教版)[PPT 格式 ] 《普通物理》习题答案(磁学,电学,热学)[PDF 格式 ] 《材料力学》课后习题答案(单辉祖,第二版,高教出版社)[Word 格式 ]《分析化学》课后习题答案(第五版,高教版)[Word 格式 ]《分析化学》习题解答[Word 格式 ]《理论力学》课后习题答案(赫桐生,高教版)[Word 格式 ]《大学物理学》习题解答[PDF 格式 ] 《电动力学》习题答案(第三版,郭硕宏)[PDF 格式 ] 《大学物理》课后答案(陈信义)上下册的[PDF 格式 ] 《数学物理方法》(第三版 )习题答案[JPG 格式 ] 《普通化学(第五版)》习题详解(配套浙大编的)[PDF 格式 ] 《光学》习题答案及辅导(赵凯华)[PDF 格式 ] 《工程光学》习题答案[PDF 格式] 《材料力学》详细习题答案及辅导(第四版,刘鸿文)[PDF 格式 ] 《电磁场与电磁波》(第 4 版)习题答案及自学辅导[PDF 格式 ] 《量子力学教程》习题解答(周世勋版) [Word 格式 ]《流体力学》习题答案[PDF 格式 ] 《有机化学》课后习题答案(胡宏纹,第三版)[Word 格式 ]《有机化学》习题答案(汪小兰主编)[Word 格式 ]《化工热力学》习题及详细解答[PDF 格式 ] 《工程热力学》课后全解(第三版,沈维道编,高教版)[PDF 格式 ] 《理论力学》课后习题答案[Word 格式 ]自动控制原理习题集(自学辅导推荐)[PDF 格式 ] 《自动控制原理》课后题答案(胡寿松,第四版)[PDF 格式 ] 大学物理习题及答案[PDF 格式 ] 《物理学》习题分析与解答(马文蔚主编,清华大学,第五版)[PDF 格式 ] 《电机与拖动基础》课后习题答案(第四版,机械工业出版社,顾绳谷主编)[Word 格式 ]《土力学》习题解答/课后答案[PDF 格式 ] 《数学物理方法》习题解答案详细版(梁昆淼,第二版)[PDF 格式 ] 《传热学》课后答案(杨世铭,陶文铨主编,高教版)[PDF [Word [Word [PDF [PDF 格式 ] 《材料力学》详细辅导及课后答案(PDF 格式,共642 页)格式 ]大学物理实验绪论课指导书及参考答案格式 ]《大学基础物理学》课后答案(共16 个单元)格式 ] 流体力学课后答案(高教版,张也影,第二版)格式 ] 程守洙、江之永主编《普通物理学》(第五版)详细解答及辅导电子信息[PDF格式 ] 《数字通信》习题答案(第四版,Proakis)[PDF 格式 ] 《信号与系统》习题答案(第四版,吴大正)[Word 格式 ]《基础电子技术》习题解答(哈工大,蔡惟铮)[Word 格式 ]《微机原理及应用》习题答案[PPT 格式 ] 《通信电路》课后习题答案(沈伟慈,西安电子科技大学出版社)[JPG 格式 ] 《信号与系统》习题答案详解(郑君莉,清华大学,牛逼完整版)[PPT 格式 ] 《电路分析》习题答案(第 2 版,高等教育出版社,胡翔俊)[Word 格式 ]《热工测量与自动控制》习题及答案[PDF 格式 ] 《信息论与编码》学习辅导及习题详解(傅祖芸版)[PDF 格式 ] 《电工学——电子技术》习题答案(下册)[PDF 格式 ] 《数字逻辑电路与系统设计》习题答案[Word 格式 ]《数字电路与逻辑设计》课后习题答案,讲解详细 [Word格式 ]《电工学》课后习题答案(第六版,上册,秦曾煌主编) [PDF格式 ] 《数字信号处理》完整习题答案(程佩青,英文版) [Word 格式 ]《微机原理》作业答案(李继灿版)[Word 格式 ]《通信原理》课后习题答案及每章总结(樊昌信,国防工业出版社,第五版)[PDF 格式 ] 《信号与系统》课后习题答案[PDF 格式 ] 《数字电子技术基础》课后习题答案(完整答案版)[Word 格式 ]《电子线路 -非线性部分》课后答案(谢嘉奎[Word 格式 ]《通信原理》习题答案高等教育出版社)[PDF 格式 ] 《电路分析》课后答案及学习指导(第二版,胡翔骏,高教版)[PDF 格式 ] 《数字信号处理——基于计算机的方法》习题答案(第二版)[PDF 格式 ] 《数字电子技术基础》详细习题答案(阎石第四版)[Word 格式 ]《测控电路》习题答案(机械出版社)[Word 格式 ]《电力电子技术》习题答案(第四版,王兆安,王俊主编)[Word 格式 ]《单片机及接口技术》课后答案(梅丽凤,王艳秋,清华大学出版社)[PDF 格式 ] 《电路》习题答案上(邱关源,第五版)[PPT 格式 ]《信息论与编码》辅导 PPT 及部分习题答案(曹雪虹,张宗橙,北京邮电大学出版社)[PDF 格式 ] 《电子电路分析与设计》课后题答案(英文版)[PDF 格式 ] 《电力电子技术》习题答案(第 4 版,西安交通大学)[Word 格式 ]《自动控制原理》课后题答案(卢京潮主编,西北工业大学出版社)[Word 格式 ]《控制工程基础》课后习题解答(清华版)[Word 格式 ]《控制工程基础》习题答案(第二版,燕山大学)[PPT 格式 ] 《自动控制原理》习题答案[SWF 格式 ]《微电子器件与 IC 设计》习题答案(科学出版社)[PDF 格式 ] 《电力拖动自动控制系统》习题答案[PDF 格式 ] 《电工学》习题答案(第六版,秦曾煌)[Word 格式 ]《数字信号处理》习题答案[PDF 格式 ] 《信号与系统》习题及精解[PDF 格式 ] 《信号与系统》课后习题答案(于慧敏著)[PDF 格式 ] 《信号与系统》课后习题答案(西安电子科技大学)[Word 格式 ]电子技术数字和模拟部分答案(第四版,康华光)[Word 格式 ]《信息论与编码》习题答案(高等教育出版社 )仇佩亮编[PDF 格式 ] 《现代控制系统》答案(英文版)730 页[PDF 格式 ] 《数字电子技术》课后习题答案详解(阎石,第四版)[PDF 格式 ] 《数字电子技术基础》习题答案(阎石,第五版)[PDF 格式 ] 《信号与系统》习题详解(奥本海姆版)[PDF 格式 ] 《信号与线性系统分析》习题答案及辅导参考(吴大正版)[Word 格式 ]《信号与系统》习题解析(燕庆明,第 3 版)非常详细[Word 格式 ]《 IBM-PC 汇编语言》课后习题答案[PDF 格式 ] 《数字信号处理教程》习题解答(第二版)[PDF 格式 ] 《数字信号处理》课后答案及详细辅导(丁美玉,第二版)[Word 格式 ]《现代通信原理》习题答案(曹志刚版)[Word 格式 ]《模拟电子技术基础》详细习题答案(童诗白,华成英版,高教版)[Word 格式 ]《模拟电子技术基础简明教程》课后习题答案(杨素行第三版)[Word 格式 ]《单片机原理及应用》课后习题答案(张毅刚主编,高教版)[Word 格式 ]《数字逻辑》(第二版)习题答案(欧阳明星主编)[PPT 格式 ] 《模拟电子技术基础》课后习题答案(共10 章)[PDF 格式 ] 《数字逻辑》第四版习题答案法学政治[PDF 格式 ] 《公共关系学》习题及参考答案(复习必备)[Word 格式 ]《公司法》课后练习及参考答案[Word 格式 ]《国际经济法》课后参考答案[Word 格式 ]思想道德修养与法律基础课后习题答案[Word 格式 ]《毛泽东思想和中国特色社会主义理论体系概论》习题答案(2008 年修订版的)[Word 格式 ]《马克思主义基本原理概论》新版完整答案文学历史[PDF 格式 ] 《语言学概论》习题答案(自考 ,新版教材 )[PDF 格式 ] 《语言学概论练习题》答案[PDF 格式 ] 《语言学教程》课后答案[Word 格式 ]选修课《中国现当代文学》资料包[Word 格式 ]《传播学教程》课后答案(郭庆光主编,完整版)[Word 格式 ]现代汉语题库(语法部分)及答案[Word 格式 ]《中国近代史纲要》课后习题答案[Word 格式 ]《中国近现代史》选择题全集(共含250 道题目和答案)[Word 格式 ]《中国近代史纲要》完整课后答案(高教版)数学应用[Word 格式 ]高等数学习题答案及提示[PDF 格式 ] 《线性代数》习题答案(魏福义,黄燕苹,中国农业出版社)[Word 格式 ]《概率论与数理统计》8 套习题及习题答案(自学推荐)[Word 格式 ]《线性代数》9 套习题 +9 套相应答案(自学,复习推荐)[PDF 格式 ] 《概率论与数理统计》习题册答案(四川大学版)[PDF 格式 ] 《近世代数基础》习题解答(张瑞禾版,高教版)[Word 格式 ]《数值分析)大作业(详细,英文版)[PDF 格式 ] 《算法导论》课后习题答案(英文版)[Word 格式 ]《概率论》完整习题答案(李贤平,复旦版)[Word 格式 ]《概率论与数理统计》课后习题解答(东南大学出版社)[PDF 格式 ] 《数学分析》完整习题答案(第二版,陈传璋编,复旦大学高等教育出版社)[PDF 格式 ] 《概率论与数理统计》优秀学习资料[Word 格式 ]《概率论与数理统计及其应用》课后答案(浙江大学盛骤谢式千编著)[Word 格式 ]《常微分方程》习题解答(王高雄版)[PDF 格式 ] 《泛函分析》习题解答(张恭庆版)[Word 格式 ]《线性代数》课后习题答案(陈维新,科学出版社)[PDF 格式 ] 《高等代数与解析几何》习题答案(同济大学)[PDF 格式 ] 《运筹学(第三版)》讲解和习题答案(清华大学出版社)[PDF 格式 ] 《复变函数》习题答案(第四版)[PDF 格式 ] 《理工类复习全书》课后答案详解(陈文灯)[PDF 格式 ] 《积分变换》习题答案(配套东南大学张元林编的)[Word 格式 ]《离散数学》习题答案(高等教育出版社)[Word 格式 ]《线性代数》习题解答(王中良)[Word 格式 ]工程数学《概率统计简明教程》习题全解(高教版)[Word 格式 ]《概率论与数理统计》习题答案(复旦大学出版社)[PDF 格式 ] 《概率论与数理统计》习题详解(浙大二、三版通用)[PDF 格式 ] 《复变函数与积分变换》习题答案[PPT 格式 ] 高等数学上下《习题 PPT》[PPT 格式 ] 《概率论与数理统计》习题答案[Word 格式 ]离散数学习题解答(第四版)清华大学出版社[Word 格式 ]《统计学》课后答案(第二版,贾俊平版)[Word 格式 ]《教育统计学》课后练习参考答案(共有12 章)[PDF 格式 ] 高等数学(同济第五版)课后答案(PDF 格式,共495 页)[PDF 格式 ] 《线性代数》(同济第四版)课后习题答案(完整版)[PDF 格式 ] 统计学原理作业及参考答案[PDF 格式 ] 大学数学基础教程课后答案(微积分)医药农学[PDF 格式 ] 《遗传学》课后习题答案(朱军主编,完整版)[PDF 格式 ] 《普通动物学》完整课后答案(刘凌云,郑光美版)[Word 格式 ]《动物学》习题集与答案(资料相当丰富)[PDF 格式 ] 《畜禽解剖学与组织胚胎学》习题答案参考[PDF 格式 ] 《微生物学》课后习题答案(周德庆版)[Word 格式 ]药用植物的两份习题(自己感觉比较有用)英语外文[PDF 格式 ] 《大学英语自学教程》课后习题答案(上册)[PDF 格式 ] 《大学英语自学教程》课后习题答案(下册)[Word 格式 ]新时代交互英语视听说 2.3.4 级答案[Word 格式 ]多维教程 -探索(研究生英语)课后习题答案答案[Word 格式 ]《计算机英语(第 2 版)》参考译文[Word 格式 ]《新编大学英语》课后答案(第三册)[Word 格式 ]《全新版大学英语综合教程》(第四册)练习答案及课文译文[Word 格式 ]《全新版大学英语综合教程》(第三册)练习答案及课文译文[Word 格式 ]《全新版大学英语综合教程》(第二册)练习答案及课文译文[Word 格式 ]《全新版大学英语综合教程》(第一册)练习答案及课文译文[PDF 格式 ] 《简明法语教程》配套习题答案[Word 格式 ]新编大学英语4(外研版)课后练习答案[Word 格式 ]《新视野大学英语读写教程(第二版)第三册》课后答案[Word 格式 ]《新视野大学英语读写教程(第二版)第二册》课后答案[Word 格式 ]新视野大学英语读写教程(第二版)第一册》课后答案[PDF 格式 ] 大学英语精读第 3 册答案 (外教社 )[PDF 格式 ]21 世纪大学英语读写教程(第四册)课后答案[PDF 格式 ]21 世纪大学英语读写教程(第三册)课文翻译[PDF 格式 ]21 世纪大学英语读写教程(第三册)参考答案[PDF 格式 ]21 世纪大学实用英语综合教程(第一册)课后答案及课文翻译计算机类[Word 格式 ]《计算机原理》8 套习题及答案(自学推荐)[PDF 格式 ] 《 (C#) 大学实用教程》习题答案(电子工业出版社,郭洪涛,刘丹妮,陈明华)[Word 格式 ]《编译原理》习题答案(第二版)[PDF 格式 ] 《计算机操作系统》习题答案(汤子瀛版,完整版)[Word 格式 ]《全国计算机等级考试二级教程——C语言程序设计》课后习题详解[Word 格式 ]《汇编语言程序设计》习题答案(第二版,沈美明,温冬婵,清华大学出版社)[PDF 格式 ] 《计算机网络——自顶向下方法与Internet 特色》习题答案(第三版,英文版)[Word 格式 ]《 C 语言大学实用教程》全部参考答案(苏小红版)[Word 格式 ]《全国计算机等级考试——三级C语言》上机100 题 +源程序[Word 格式 ]《数据库系统概论》课后习题(第四版)[Word 格式 ]《 C 语言程序设计》课后习题答案(地质出版社)[PDF 格式 ] 《操作系统概念》习题答案(第七版,英文版,影印版)[Word [Word [PDF [HTM [Word [CHM [Word [Word格式 ]《数据结构与算法分析》习题与解答格式 ]《算机操作系统教程》习题详解(第二版)格式 ] 《计算机组成与结构》习题讲解格式 ] 数据结构 1800 例题与详细答案格式 ]《计算机组成原理》课后习题答案(白中英主编第三版科学出版社)格式 ]《数据结构习题集》答案( C 版,清华大学,严蔚敏)格式 ]《 VB 程序设计》课后习题答案(第四版,邵洁主编的)格式 ]C 语言资料大全(有课后答案,自学资料, C 程序等)[Word 格式 ]《 C 语言》习题解答[Word 格式 ]《 C++ 程序设计》课后习题答案(第 2 版,吴乃陵,高教版)[Word 格式 ]《数据库系统原理与设计》课后答案(第四版,王珊,萨师煊)[Word 格式 ]《计算机网络》(第 4 版)习题答案(英文版)[Word 格式 ]《计算机网络》习题答案(第三版,英文版)[Word 格式 ]《计算机网络》课后习题答案(第5版和第 4版)[PDF 格式 ] 《 C 语言设计》(谭浩强,第三版)227 页[PDF 格式 ] 《数据与计算机通信》习题答案(第七版,英文版)[Word 格式 ]《 VB 程序设计》习题答案(蒋加伏)[PDF 格式 ] 《数据库系统概论》习题答案(第四版)[PDF 格式 ] 《数字图象处理》习题答案(冈萨雷斯,第二版)[PDF 格式 ] 《 c 语言程序与设计》习题答案(谭浩强,第三版)[PDF 格式 ] 《编译原理》答案(陈火旺版,第三版)[Word 格式 ]《编译原理》课后答案(清华版)[Word 格式 ]《社会统计分析与SAS 应用》习题及答案及程序数据[PDF 格式 ] 谢希仁《计算机网络教程》(第五版)习题参考答案(共48 页)[PDF 格式 ] 网页设计与制作各章习题及答案[PDF 格式 ] 《社会统计分析与SAS 应用》习题及答案及程序数据机械制造[Word 格式 ]《极限配合与测量技术基础》课程详解+习题 +答案(自学必备)[Word 格式 ]机械设计——《螺旋传动设计说明书》仅供参考[Word 格式 ]《机电传动》课后习题答案(邓星钟版)[PDF 格式 ] 《机械原理》习题答案和超多例题(西北工业大学,第六版)[Word 格式 ]液压试题库及参考答案( 32 页 word,复习推荐)[Word 格式 ]《汽车理论》 1-4 章编程(含源码,MATLAB 编的程序)[Word 格式 ]机械设计课程设计——带式运输机的传动装置的设计[PDF 格式 ] 《机械制造技术》习题集与答案解析[PPT 格式 ] 《画法几何》资料包(含习题答案,自学辅导课件)[PPT 格式 ] 《机械设计基础》大作业(轴承部件设计——直齿圆柱齿轮减速器的输出轴)[Word 格式 ]安全人机工程海量习题及答案[Word 格式 ]《汽车构造》习题集与详细答案[Word 格式 ]《汽车构造》(底盘)习题集含答案[Word 格式 ]《机械测试技术基础》习题答案[PDF 格式 ] 《机械原理》复习精要与习题精解(第7 版,西北大学)[PPT 格式 ] 《机械制图》习题册答案(近机类、非机类,清华大学出版社)[Word 格式 ]《化工设备机械基础》习题解答[Word 格式 ]《钢结构设计原理》习题答案[Word 格式 ]《汽车构造》习题集及答案,还有很很相关资料[Word 格式 ]《机械优化设计》习题参考答案(第 3 版,孙靖民,哈工大)[Word 格式 ]《汽车理论》课后答案详细解答(余志生,机械工业出版社)[PDF 格式 ] 《机械设计》课后习题答案(高教版,第八版,西北工业大学)[Word 格式 ]《混凝土结构习题集》(适合自学辅导)[PDF 格式 ] 机械原理课程设计——压片机(附详细说明书)[Word 格式 ]机械设计课程设计——二级斜齿圆柱齿轮减速器( WORD+ 原图)[Word 格式 ]《机械工程测试技术基础》(第三版,熊诗波等主编)课后答案[Word [Word 格式 ]机械设计基础(第五版 )习题答案 [杨可桢等主编 ]格式 ]《液压传动》第 2 版思考题和习题解答(共36 页)管理学类[PDF 格式 ] 《管理学》课后答案(周三多)[Word 格式 ]《管理学——原理与方法》课后习题答案[Word 格式 ]《管理学》课后习题答案(罗宾斯,人大版,第7 版)[PDF 格式 ] 《管理信息系统简明教程》课后习题答案[Word 格式 ]《组织行为学》习题集答案(参考下,还是蛮好的)[PDF 格式 ] 《财务管理学》章后练习参考答案(人大出版,第四版)[JPG 格式 ] 《管理理论与实务》课后题答案(手写版,中央财经大学,赵丽芬)[Word 格式 ]《管理学》经典笔记(周三多,第二版)[Word 格式 ]《汽车运输企业管理》配套习题集及答案[PDF 格式 ] 《管理运筹学》第二版习题答案(韩伯棠教授)教育体育[Word 格式 ]《教育心理学》课后习题答案(皮连生版)[Word 格式 ]教育统计与测量管理心理学(自考必备资料,牛逼打印版)[Word 格式 ]《教育技术》课后习题答案参考(北师大)专业资料学习资料教育培训考试建筑装潢资料。