
机试
cellinlab
这个作者很懒,什么都没留下…
展开
-
2018北邮计算机院机试Problem B《字符图像》简单解法
Problem B 数字字符图像用‘0’和‘1’通过5*3的字符排列表示数字0~9。Input: 2 Output: 111 001 111 100 111分析: 通过列举所有情况不难发现,这些字符图像均有如下四个基本单元行进行组合构成 故可以将每个字符图像抽象为由五个代表基本行单元的数组成的数列。代码实现:#include<stdio.h> int mai...原创 2018-04-01 23:28:57 · 761 阅读 · 0 评论 -
LeetCode_Add Two Numbers_ 0x2
目录 Description: Example: Solution: Submission: Summary: Description: Add Two Numbers You are given two non-empty linked lists representing two non-negative integers. The digits are stored ...原创 2018-12-03 13:56:29 · 166 阅读 · 0 评论