摘要:
import java.util.function.Consumer; public class SinglyLinkedList {//烧饼版 private Node head = new Node(666,null);//头指针指向哨兵结点 private static class Node 阅读全文
摘要:
#include <stdio.h>#include <stdlib.h>typedef struct Tree{ int data; struct Tree *lchild,*rchild;}Tree,*BiTree; BiTree CreateLink(){ int data; int temp 阅读全文