weixin_38918663
码龄9年
求更新 关注
提问 私信
  • 博客:2,674
    2,674
    总访问量
  • 8
    原创
  • 0
    粉丝
  • 112
    关注
IP属地以运营商信息为准,境内显示到省(区、市),境外显示到国家(地区)
IP 属地:浙江省
加入CSDN时间: 2017-05-24
博客简介:

weixin_38918663的博客

查看详细资料
个人成就
  • 获得0次点赞
  • 内容获得0次评论
  • 获得1次收藏
  • 博客总排名474,061名
创作历程
  • 8篇
    2020年
成就勋章
TA的专栏
  • PAT
    4篇
  • 各种module
    1篇

TA关注的专栏 0

TA关注的收藏夹 0

TA关注的社区 2

TA参与的活动 0

兴趣领域 设置
  • 人工智能
    机器学习神经网络数据分析
创作活动更多

「谁说嵌入式只是调包和焊板子?」—— 2026嵌入式全栈技术征锋令

谁说嵌入式只会“Ctrl+C 调包”和“拿电烙铁焊板子”?2026嵌入式全栈技术征锋令正式启幕! 本次活动专为硬核硬件/软件开发者打造,无论你是刚玩转裸机外设的萌新,还是精通RTOS调度、死磕底层驱动的行业老手,亦或是执掌系统架构的大神,这里都是你证明实力的舞台! 拒绝表面功夫,每一行代码,都有撬动硬件的力量!晒出你的硬核工程实战,为嵌入式开发者的全栈硬实力正名!

211人参与 去参加
  • 最近
  • 文章
  • 专栏
  • 代码仓
  • 资源
  • 收藏
  • 关注/订阅/互动
更多
  • 最近

  • 文章

  • 专栏

  • 代码仓

  • 资源

  • 收藏

  • 关注/订阅/互动

  • 社区

  • 帖子

  • 问答

  • 课程

  • 视频

搜索 取消

1015 Reversible Primes (20分)

Areversible primein any number system is a prime whose "reverse" in that number system is also a prime. For example in the decimal system 73 is a reversible prime because its reverse 37 is also a prime. Now given any two positive integersN(<10​5​​)...
原创
博文更新于 2020.12.04 ·
148 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

1010 Radix (25分)

Given a pair of positive integers, for example, 6 and 110, can this equation 6 = 110 be true? The answer isyes, if 6 is a decimal number and 110 is a binary number. Now for any pair of positive integersN​1​​andN​2​​, your task is to find the radix of ...
原创
博文更新于 2020.12.01 ·
134 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

十进制,十六进制转二进制

import java.util.Scanner; public class ListTest { public static void main(String[] args) { Scanner in = new Scanner(System.in); String num1 = in.next(); changeTo2Binary(16, num1)) } private static int[] radixs = new.
原创
博文更新于 2020.11.25 ·
188 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

PAT优化输入超时

1007Maximum Subsequence Sum(25分) Scanner输入效率太低,改用BufferedReader,再将字符串转化为int BufferedReader sc = new BufferedReader(new InputStreamReader(System.in)); import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; publi..
原创
博文更新于 2020.11.23 ·
198 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

dijkstra算法的应用

使用dijkstra算法计算最短路径数和最短路径长度 例1:1003Emergency: Input Specification: Each input file contains one test case. For each test case, the first line contains 4 positive integers:N(≤500) - the number of cities (and the cities are numbered from 0 toN−1),M- ...
原创
博文更新于 2020.10.08 ·
550 阅读 ·
0 点赞 ·
0 评论 ·
1 收藏

单词记录

polynomial[ˌpɒli'nəʊmiəl] 多项式
原创
博文更新于 2020.10.08 ·
98 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

tip:java设置小数转字符串的小数位数

java设置小数转字符串的小数位数 DecimalFormat df = new DecimalFormat("#.0"); Double value = entry.getValue(); String v = df.format(value);
原创
博文更新于 2020.10.08 ·
162 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

使用Puppeteer导出PDF文件

https://github.com/puppeteer/puppeteer 项目以前是使用phantomjs运行JS,生成PDF文件。后来因为phantomjs不维护了,改使用Puppeteer。 Puppeteer是node module,需要在nodeJS环境下运行。 所需文件:node.exe、JS文件(test.js) test.js: const puppeteer = require('puppeteer'); (async () => { const browser
原创
博文更新于 2020.05.22 ·
1197 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏