摘要:
(1).秦九韶算法:把一个N次的多项式,改写成如下形式:\[\begin{array}{l}f( x ) = a_n{x^n} + a_{n - 1}x^{n - 1} + \cdots + {a_1}x + a_0\\= ( {a_n}x^{n - 1} + a_{n - 1}x^{n - 2} ... 阅读全文
摘要:
题意:集合A,B,计算集合差A-B(求只在集合A内的数) 解法: 选用STL内的集合set 1.建立set 1: #include 2: 3: set se;2.关于集合的遍历,固定的格式:用容器的iterator访问所有数据。 1: for(set::iterator it=a.begin();it!=a.end();it++){ 2: //TO DO ... 阅读全文