摘要: 1 #include 2 #include 3 #include 4 #define N 20 5 #define M 2*N-1 6 typedef struct 7 //哈夫曼树的类型定义 8 { 9 int weight; 10 int parent; 11 int LChild; 12 int RChild;... 阅读全文
posted @ 2018-04-29 21:18 红领巾*** 阅读(223) 评论(0) 推荐(1) 编辑
摘要: ID选择器 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Document</title> 6 <style type="text/css"> 7 #logo{ 8 font-size: 阅读全文
posted @ 2018-04-29 16:30 红领巾*** 阅读(204) 评论(0) 推荐(0) 编辑