今晚的月色温柔

导航

2020年5月16日 #

创造有序链表

摘要: #include <iostream>using namespace std;struct node {int data;node *next;};typedef node *LinkList;void createOList(LinkList &L,int m){node *p,*q,*r,*k; 阅读全文

posted @ 2020-05-16 19:01 1022 阅读(52) 评论(0) 推荐(0) 编辑