05 2020 档案
摘要:Git设置HTTP/HTTPS代理服务器 git config --global http.proxy http://localhost:port git config --global https.proxy https://localhost:port 其中,localhost为服务器地址,po
阅读全文
摘要:队列(Queue))顺序存储C语言实现 #define ERROR -1 typedef int ElemType; typedef int Position; typedef struct QNode* Queue; typedef struct QNode{ ElemType*data; Pos
阅读全文
摘要:/* program to construct tree using inorder and preorder traversals */ #include <stdio.h> #include <stdlib.h> /* A binary tree node has data, pointer t
阅读全文