搜索资源列表
canon2
- 主要还是让A(i,j) B(i,j)进行移动A(i,i+j),B(i+j,j),然后进能直接相乘。具体的内容可以看并行算法导论,-Matrix multiplication with the Cannon Algorithm: The Cannon Algorithm for matrix multiplication was presented in the course “Parallel and Distributed Algorithms “by Dr. Klauck. Sh
shiyan2
- 求一元n次多项式的值 一个n次多项式如: 其中 被称为系数。在本题中使用LinkedList类,其数据记录项Term中包含每一项的系数 及x的幂次。 struct Term { double coeff int power } 在程序中以(系数、幂次)对的序列输入一个多项式。在输入的幂次为0时终止程序,将每对系数/幂次存储到按幂次排序的链表中。 (a)按以下形式输出结果多项式中的每一项 ai*x^