随笔分类 -  <算法编程>

摘要:1 #include 2 using namespace std; 3 4 typedef struct Node 5 { 6 int num; 7 Node* pNext; 8 }Stack,Queue; 9 10 //栈的入栈相当于 链表的头插 11 Stack* stack_push(Stack** pTop,int num) 12 { 13 ... 阅读全文
posted @ 2019-07-21 13:33 Aaaaaalei 阅读(171) 评论(0) 推荐(0) 编辑
摘要:1 #include 2 using namespace std; 3 4 void ChangeSpace(char* buf,int len) 5 { 6 if(buf == NULL || len =0;i--) 16 { 17 if(buf[i] != ' ') 18 buf[i+2*count] = buf[i]; ... 阅读全文
posted @ 2019-07-20 18:58 Aaaaaalei 阅读(224) 评论(0) 推荐(0) 编辑
摘要:1 #include<iostream> 2 using namespace std; 3 4 struct Node 5 { 6 int n; 7 Node* pNext; 8 }; 9 10 Node* AddNode(Node** pHead,Node* pNode) 11 { 12 if(( 阅读全文
posted @ 2019-07-20 18:56 Aaaaaalei 阅读(190) 评论(0) 推荐(0) 编辑
摘要:1 #include 2 using namespace std; 3 4 bool FindNum(int arr[][5],int rows,int cols,int num) 5 { 6 if(arr == NULL || rows =0&&col arr[row][col]) 16 { 17 col ++; 18 ... 阅读全文
posted @ 2019-07-20 18:53 Aaaaaalei 阅读(276) 评论(0) 推荐(0) 编辑
摘要:1 #include 2 using namespace std; 3 4 struct Node 5 { 6 int n; 7 Node* pNext; 8 }; 9 10 Node* AddNode(Node** pHead,Node* pNode) 11 { 12 if((*pHead) == NULL) 13 ... 阅读全文
posted @ 2019-07-20 18:53 Aaaaaalei 阅读(115) 评论(0) 推荐(0) 编辑