- 博客(3)
- 收藏
- 关注
原创 prolog寻找三角形个数
问题:下图中共有多少个三角形?先给各个点表上字母e(a,b).e(b,c).e(c,d).e(d,e).e(e,f).e(f,a).line([a,g,o,d]).line([e,i,o,b]).line([f,o,h,c]).line([f,g,b]).line([f,i,d]).line([b,h,d]).e2(A,B):-e(A,B);e(B,A);e_in_line(A,B).e_in_line(A,B):-line(L),member(A,L),member(B,L
2020-09-02 14:41:07 176
原创 huffman编码python实现,元组赋值
huffman编码python实现//ns是根据频率排序后的node列表//tree是根据ns生成的Huffman树(用元组表示的树),tree就是node//node -->(frequency,symbol)//hc是遍历树产生的Huffman编码列表def huffman(frs): ns=sorted([(x,y) for (y,x) in frs]) tree=make_tree(ns) hc=traverse_tree(tree) return
2020-08-30 22:58:29 151
原创 word\onenote里Unicodemath打左边大括号
word\onenote里Unicodemath打左边大括号快捷键 Alt+=打出 {\right敲击一下空格再敲击一下空格按一下方向键←,选中方块后,shift+enter添加行
2020-08-11 16:56:30 3488 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人