• 链表一元多项式相减


    解题过程

    1. #define _CRT_SECURE_NO_WARNINGS
    2. #include
    3. #include
    4. #include
    5. #include
    6. #include
    7. #include
    8. using namespace std;
    9. struct Node
    10. {
    11. int coefficient; // 系数
    12. int exponent; // 指数
    13. Node* next; // 下一个节点指针
    14. };
    15. //结点是否加*?
    16. //结点不加*,你记住只有**才需要加*
    17. //总之你就记,**就加一个*
    18. //而*就不用加.
    19. Node* create_node(int coefficient, int exponent)
    20. {
    21. Node* new_node = new Node;
    22. new_node->coefficient = coefficient;
    23. new_node->exponent = exponent;
    24. new_node->next = NULL;
    25. return new_node;
    26. }
    27. void insert(Node** head, int coefficient, int exponent)
    28. {
    29. //!:结点都没创建就插入
    30. Node* newNode = create_node(coefficient,exponent);
    31. // Node* head; 直接用上传上来的head作为头结点,没必要自己建一个
    32. // Node* cur = *x;
    33. //无意义的cur
    34. if (*head == NULL)//头结点为空时
    35. {
    36. *head =newNode;
    37. }
    38. /*else err:思路不清晰
    39. {
    40. while (*x != NULL)
    41. {
    42. cur->next = *x;
    43. *x = *x->next;
    44. }
    45. }
    46. cur->next = head;*/
    47. //1.原则保留头结点,也就是链表起始位置,防止初始结点丢失
    48. //即不动 head。因此我们要引入新的指针来建立连接,于是使用
    49. //Node* cur
    50. // 2.head就是为了确定链表的位置,然后开始遍历
    51. // 遍历到空位后开始插入,即下一个位置插入此次的数据
    52. // 首先我们要明白,head结点就是为了确认链表的位置
    53. // 所以每次打开函数的 Node* current = *head;是必要的
    54. // 其次,一般来说计算机遍历位置是很快的,没必要
    55. // 注重每次从头开始的遍历,如果实在注重,也可以写个
    56. // 双**。这样插入就每次都是上一次的位置。
    57. // 但就对题目的多项式来说,忽略不计。
    58. else {
    59. Node* cur = *head;//从链表头开始遍历
    60. while (cur->next != NULL)
    61. {
    62. cur = cur->next;
    63. }
    64. cur->next = newNode;
    65. //遍历到空后,插入当前数据结点
    66. }
    67. //return *cur;
    68. //插入不需要返回链表
    69. //因为已经**永远的记录在head结点上了
    70. }
    71. //void 相减(Node* x, Node* y) err
    72. //这次无法像head结点那样上传指针,所以要用Node*来返回给result指针的值!
    73. Node* subtractPolynomials(Node* p1, Node* p2)
    74. {
    75. Node* result = NULL;
    76. //使用新的链表,将两个多项式相减的结果插入至此
    77. while (p1 != NULL && p2 != NULL)
    78. {
    79. if (p1->exponent > p2->exponent) {
    80. insert(&result, p1->coefficient, p1->exponent);
    81. p1 = p1->next;
    82. }
    83. else if (p1->exponent < p2->exponent) {
    84. insert(&result, p2->coefficient, p2->exponent);
    85. p2 = p2->next;
    86. }
    87. else {
    88. int coefficientDiff = p1->coefficient - p2->coefficient;
    89. if (coefficientDiff != 0)
    90. {
    91. insert(&result, coefficientDiff, p1->exponent);
    92. }//当相减等于0时,直接跳过这两个指针不管它丢弃了就好了
    93. //你是真的憨批,难道指数相同相减就一定等于0?
    94. //你就一定能直接跳过?
    95. //那当然是要判断系数
    96. p1 = p1->next;
    97. p2 = p2->next;
    98. }
    99. }
    100. //补充剩下的项
    101. while (p1 != NULL)
    102. {
    103. // x->next = p1;
    104. /* 规范化,是统一插入在新的result链表中
    105. 也规范的使用函数,分工简洁明了
    106. 不要什么功能都重复写!*/
    107. insert(&result, p1->coefficient, p1->exponent);
    108. p1 = p1->next;
    109. }
    110. while (p2 != NULL)
    111. {
    112. //x->next = p2;
    113. insert(&result, p2->coefficient, p2->exponent);
    114. p2 = p2->next;
    115. }
    116. return result;
    117. //注意别忘了返回result
    118. }
    119. //有个核心思想,插入的问题
    120. //我们一般以头结点作为链表的起始
    121. //它也代表了一个链表。
    122. //所以你在插入之前要考虑好插入到哪里,而不是随便乱插!
    123. //这里是创建了一个result链表,以result作为链表的起始点
    124. //而不是就插入p1,p2的后面!
    125. //然后顺着result插入下去
    126. //不用担心,因为最后合并的多项式的方法只使用一次
    127. //因此不会出现多个result指针,
    128. //而上传到插入方法的时候,是解引用了的
    129. //因此result的值,也就是链表是一直在更新并且保存下来的
    130. //同时一个经验就是解引用,要修改指针的如**就要在上传时写&
    131. //而普通指针则只写名字即可
    132. //
    133. //因此,也就是没有创建好一个新的链表,然后返回的这个逻辑
    134. //自己需要重新建一个链表,然后返回该指针!
    135. //新建的链表通过头结点就能找到!
    136. //我们通过访问头结点,就能顺藤摸瓜访问整个链表!
    137. void printPolynomial(Node* head)//打印
    138. {
    139. Node* current = head;
    140. //直接使用head也是可以的,只要没解引用是不会改变
    141. //head初始指向的, 指向的变化仅仅只在这一周期的函数中生效而已
    142. while (current != nullptr) {
    143. cout << current->coefficient << "x^" << current->exponent;
    144. current = current->next;
    145. if (current != nullptr) {
    146. cout << " + ";
    147. }
    148. }
    149. cout << endl;
    150. }
    151. void freePolynomial(Node* x)
    152. {
    153. while (x != NULL)
    154. {
    155. Node* next = x;
    156. x = x->next;
    157. delete next;
    158. }
    159. }
    160. int main()
    161. {
    162. // 构造第一个多项式:3x^4 + 2x^3 + 5x^2 + 1
    163. Node* poly1 = nullptr;
    164. insert(&poly1, 3, 4);
    165. insert(&poly1, 2, 3);
    166. insert(&poly1, 5, 2);
    167. insert(&poly1, 1, 0);
    168. // 构造第二个多项式:2x^3 + 4x + 1
    169. Node* poly2 = nullptr;
    170. insert(&poly2, 2, 3);
    171. insert(&poly2, 4, 1);
    172. insert(&poly2, 1, 0);
    173. cout << "第一个多项式: ";
    174. printPolynomial(poly1);
    175. cout << "第二个多项式: ";
    176. printPolynomial(poly2);
    177. // 相减多项式
    178. Node* result = subtractPolynomials(poly1, poly2);//再开一个链表记录最终的结果
    179. cout << "相减结果: ";
    180. printPolynomial(result);
    181. // 释放内存
    182. freePolynomial(poly1);
    183. freePolynomial(poly2);
    184. freePolynomial(result);
    185. return 0;
    186. }

    补充笔记

    1. //也是经典的链表教学
    2. //这里作为解释部分链表内容,作为笔记就好了,
    3. //因为有些代码有些错误,放弃这种算法
    4. #define _CRT_SECURE_NO_WARNINGS
    5. #include
    6. using namespace std;
    7. // 定义一个结构体表示多项式的每一个节点
    8. struct Node {
    9. int coef; // 系数
    10. int exp; // 指数
    11. struct Node* next; // 下一个节点指针
    12. };
    13. // 创建一个新节点
    14. Node* create_node(int coef, int exp) {
    15. Node* new_node = new Node;
    16. new_node->coef = coef;
    17. new_node->exp = exp;
    18. new_node->next = NULL;
    19. return new_node;
    20. }
    21. // 向多项式链表中插入节点
    22. //明确一个过程,
    23. //我们采用的是头插法,而且最大的指数项我们是放在最前面的
    24. //符合头插法原则。
    25. //如果指数小的我们会插在后面,也就是使用当前结点的next
    26. //观察插入过程不难发现,我们每次指向的当前结点
    27. void insert_node(Node** head, int coef, int exp) {
    28. //Node** 表示指向指针的指针,通常用于传递指向指针的指针(或者说是指针的引用)作为参数,
    29. //实现对指针本身的修改。
    30. // 在链表中,使用 Node** 可以修改头指针。
    31. //例如,在插入节点的函数中,我们可以通过传递 Node** head 来修改头指针,
    32. //使头指针指向新插入的节点。
    33. //两个*也就是解引用的意思,而本质上还是只有一个*head,多一个*只是解引用。
    34. //多一个是为了解引用,也就是为了改变指针本身的值,即起到&的作用
    35. //直接用值的时候只需要一个*表示是这个指针就好了
    36. //即*head
    37. if (*head == NULL || exp > (*head)->exp) {
    38. //*head == NULL:这个条件判断链表是否为空。如果链表为空,意味着当前没有任何节点,所以需要插入的新节点应该成为链表的第一个节点。
    39. //因为Node** head,我们已经写了解引用了,也就是这个*head只能在一开始上传的时候指向空,
    40. //后面会因为解引用而修改成上次的结点,也就成为了当前结点
    41. //就不再是头结点了,这就是为什么需要**的原因,因为要不断地修改指针head指向地位置,其实它相当于是当前节点
    42. Node* new_node = create_node(coef, exp);
    43. new_node->next = *head;//这个是起到连接链表的作用
    44. //头插法
    45. *head = new_node;//给头结点赋值
    46. //从这个时候开始头结点就已不再是空,并且不断地被修改
    47. }
    48. /* 写new_node->next = *head; 的目的是将新节点的next指针指向当前链表的头节点。
    49. 这是因为在将新节点插入链表的开头时,需要保持原来的链表结构。
    50. 通过将新节点的next指针指向当前的头节点,可以将原先的链表连接到新节点之后。
    51. 假设有一个链表A : A1->A2->A3,现在要在链表开头插入一个新节点B,
    52. 希望得到的链表为B->A1->A2->A3。为了达到这个目的,
    53. 我们需要将新节点B的next指针指向原来的头节点A1,即new_node->next = *head; */
    54. else if (exp == (*head)->exp) {
    55. (*head)->coef -= coef;
    56. if ((*head)->coef == 0) //系数相减为0时,直接删除该结点
    57. {
    58. Node* temp = *head;//这个是指针,不同于变量。temp指针指向head时,此时的temp就已经代表了head
    59. *head = (*head)->next;//此时head结点改变,因为地址的变化,已经不是先前的head结点了,但是
    60. //先前的head结点=是依然存在的,所以要删除!
    61. delete temp;
    62. //删去temp就等于删去了先前的head结点,一定注意变量和指针的区别!
    63. }
    64. }
    65. //那既然是指针,为什么还要**?
    66. //指针确实是指向内存地址的,通过指针可以访问和修改该内存地址中存储的变量或对象。
    67. //但是在函数调用中,当我们将一个指针传递给函数时,实际上是将这个指针的副本传递给了函数。
    68. //具体来说,当我们将一个指针作为函数的参数进行传递时,实际上是将这个指针在内存中的副本复制给了函数调用栈中的另一个位置。
    69. //因此,当在函数内部修改这个指针的值时,只会影响到这个副本的值,而不会对原始的指针产生影响。
    70. /* 如果我们想要在函数内部修改指针本身的值,并且希望这个修改能够影响到函数外部的指针,那么就需要使用指向指针的指针,即** 。
    71. 当我们使用** 传递指针作为函数的参数时,实际上传递给函数的是这个指针的地址,即指向指针的指针。
    72. 在函数内部,我们可以解引用这个指向指针的指针,得到指向原始指针的指针,并且可以通过修改这个指针的值,来直接影响到函数外部的指针。*/
    73. //总结来说就是,指针可以修改地址中储存的变量,也就是修改别人,但是它无法修改它本身,所以要双重指针才能修改指针自己本身。
    74. else {
    75. insert_node(&((*head)->next), coef, exp);
    76. //传递下一个结点
    77. //也就是把当前的结点放在后继位置插入
    78. //因为coef 和exp的值依然存在,
    79. //还没新建结点,我们目前只是选中位置插入而已。
    80. }
    81. }
    82. // 输出多项式
    83. void print_polynomial(Node* head) {
    84. Node* temp = head;
    85. while (temp != NULL) {
    86. cout << temp->coef << "x^" << temp->exp;
    87. if (temp->next != NULL) {
    88. cout << " + ";
    89. }
    90. temp = temp->next;
    91. }
    92. cout << endl;
    93. }
    94. // 一元多项式相减函数
    95. Node* subtract_polynomials(Node* poly1, Node* poly2) {
    96. Node* result = NULL;
    97. Node* temp1 = poly1;
    98. Node* temp2 = poly2;
    99. while (temp1 != NULL && temp2 != NULL) {
    100. if (temp1->exp > temp2->exp) {
    101. insert_node(&result, temp1->coef, temp1->exp);
    102. temp1 = temp1->next;
    103. }
    104. else if (temp1->exp < temp2->exp) {
    105. insert_node(&result, -temp2->coef, temp2->exp);
    106. temp2 = temp2->next;
    107. }
    108. else {
    109. int coef_diff = temp1->coef - temp2->coef;
    110. if (coef_diff != 0) {
    111. insert_node(&result, coef_diff, temp1->exp);
    112. }
    113. temp1 = temp1->next;
    114. temp2 = temp2->next;
    115. }
    116. }
    117. // 将剩余节点添加到结果链表中
    118. while (temp1 != NULL) {
    119. insert_node(&result, temp1->coef, temp1->exp);
    120. temp1 = temp1->next;
    121. }
    122. while (temp2 != NULL) {
    123. insert_node(&result, -temp2->coef, temp2->exp);
    124. temp2 = temp2->next;
    125. }
    126. return result;
    127. }
    128. // 释放链表内存
    129. void delete_list(Node* head) {
    130. Node* temp;
    131. while (head != NULL) {
    132. temp = head;
    133. head = head->next;
    134. delete temp;
    135. }
    136. }
    137. int main() {
    138. // 创建第一个多项式: 3x^4 + 2x^3 + 5x^2 + 7x + 6
    139. Node* poly1 = NULL;
    140. //我懂了,也对,不用这难,按照顺序输入标准多项式就好了,别乱排序插入,
    141. //这点不考虑就完事了。
    142. insert_node(&poly1, 3, 4);
    143. insert_node(&poly1, 2, 3);
    144. insert_node(&poly1, 5, 2);
    145. insert_node(&poly1, 7, 1);
    146. insert_node(&poly1, 6, 0);
    147. // 创建第二个多项式: 2x^3 + 4x^2 + 8
    148. Node* poly2 = NULL;
    149. insert_node(&poly2, 2, 3);
    150. insert_node(&poly2, 4, 2);
    151. insert_node(&poly2, 8, 0);
    152. // 输出两个多项式
    153. cout << "第一个多项式: ";
    154. print_polynomial(poly1);
    155. cout << "第二个多项式: ";
    156. print_polynomial(poly2);
    157. // 计算相减结果
    158. Node* result = subtract_polynomials(poly1, poly2);
    159. // 输出相减结果
    160. cout << "相减结果: ";
    161. print_polynomial(result);
    162. // 释放内存
    163. delete_list(poly1);
    164. delete_list(poly2);
    165. delete_list(result);
    166. return 0;
    167. }

    笔记二

    1. #include
    2. // 定义多项式的节点结构
    3. struct Node {
    4. int coefficient; // 系数
    5. int exponent; // 指数
    6. Node* next; // 下一个节点指针
    7. Node(int coef, int exp) : coefficient(coef), exponent(exp), next(nullptr) {}
    8. };
    9. // 插入节点到多项式链表
    10. void insert(Node** head, int coefficient, int exponent) {
    11. Node* newNode = new Node(coefficient, exponent);
    12. if (*head == nullptr) {
    13. *head = newNode;//建立头结点
    14. }
    15. else {
    16. Node* current = *head;
    17. while (current->next != nullptr) {
    18. current = current->next;
    19. }
    20. current->next = newNode;//最后指回头结点,闭合
    21. }
    22. }
    23. // 打印多项式链表
    24. void printPolynomial(Node* head) {
    25. Node* current = head;
    26. while (current != nullptr) {
    27. std::cout << current->coefficient << "x^" << current->exponent;
    28. current = current->next;
    29. if (current != nullptr) {
    30. std::cout << " + ";
    31. }
    32. }
    33. std::cout << std::endl;
    34. }
    35. // 一元多项式相减
    36. Node* subtractPolynomials(Node* poly1, Node* poly2) {
    37. Node* result = nullptr;
    38. Node* current = nullptr;
    39. Node* p1 = poly1;
    40. Node* p2 = poly2;
    41. while (p1 != nullptr && p2 != nullptr) {
    42. if (p1->exponent > p2->exponent) {
    43. insert(&result, p1->coefficient, p1->exponent);
    44. p1 = p1->next;
    45. }
    46. else if (p1->exponent < p2->exponent) {
    47. insert(&result, p2->coefficient, p2->exponent);
    48. p2 = p2->next;
    49. }
    50. else {
    51. int coefficientDiff = p1->coefficient - p2->coefficient;
    52. if (coefficientDiff != 0) {
    53. insert(&result, coefficientDiff, p1->exponent);
    54. }
    55. p1 = p1->next;
    56. p2 = p2->next;
    57. //如果等于0,直接跳到下一个指针即可
    58. }
    59. }
    60. //前面的条件是&&,两个中有一个不满足就会退出循环,所以要写剩余的项补充!
    61. //明白了,是一个个系数互相比对加减,而不是直接一口气排好先,根本不必排好,直接先插入后再逐项比对加减即可!
    62. // 将剩余的项添加到结果中
    63. //后面的是为了避免那种,就比如p1的指数全部都比p2大的情况,或者说,对比完后,p1的已经输出完全部了
    64. //而p2还有比它最后一个指数还要小的数,所以直接插入到后面即可
    65. while (p1 != nullptr) {
    66. insert(&result, p1->coefficient, p1->exponent);
    67. p1 = p1->next;
    68. }
    69. while (p2 != nullptr) {
    70. insert(&result, p2->coefficient, p2->exponent);
    71. p2 = p2->next;
    72. }
    73. return result;
    74. }
    75. // 释放多项式链表的内存
    76. void freePolynomial(Node* head) {
    77. Node* current = head;
    78. while (current != nullptr) {
    79. Node* next = current->next;
    80. delete current;
    81. current = next;
    82. //你不能直接current=current->next
    83. //必须要拿另一个指针提前存放,否则会丢失
    84. }
    85. }
    86. int main() {
    87. // 构造第一个多项式:3x^4 + 2x^3 + 5x^2 + 1
    88. Node* poly1 = nullptr;
    89. insert(&poly1, 3, 4);
    90. insert(&poly1, 2, 3);
    91. insert(&poly1, 5, 2);
    92. insert(&poly1, 1, 0);
    93. // 构造第二个多项式:2x^3 + 4x + 1
    94. Node* poly2 = nullptr;
    95. insert(&poly2, 2, 3);
    96. insert(&poly2, 4, 1);
    97. insert(&poly2, 1, 0);
    98. std::cout << "第一个多项式: ";
    99. printPolynomial(poly1);
    100. std::cout << "第二个多项式: ";
    101. printPolynomial(poly2);
    102. // 相减多项式
    103. Node* result = subtractPolynomials(poly1, poly2);//再开一个链表记录最终的结果
    104. std::cout << "相减结果: ";
    105. printPolynomial(result);
    106. // 释放内存
    107. freePolynomial(poly1);
    108. freePolynomial(poly2);
    109. freePolynomial(result);
    110. return 0;
    111. }

  • 相关阅读:
    橘子学JVM之命令行监控01之jps
    ASF之InSAR云计算(成果包括DEM、缠绕影像、形变图)
    【每日一题】441. 排列硬币
    AI界的宝藏图:揭秘最牛AI网站,轻松成为智能科技达人!
    YOLO目标检测——红白细胞血小板数据集【含对应voc、coco和yolo三种格式标签】
    Hive3 on Spark3配置
    C++之const浅谈(2)
    高考报志愿选什么专业?
    【LeetCode】50. Pow(x, n)
    【云原生之k8s】K8s 管理工具 kubectl 详解(二)
  • 原文地址:https://blog.csdn.net/ASBSIHD/article/details/133062213