NameNoteFound
码龄12年
求更新 关注
提问 私信
  • 博客:24,155
    社区:708
    24,863
    总访问量
  • 17
    原创
  • 12
    粉丝
  • 0
    关注
IP属地以运营商信息为准,境内显示到省(区、市),境外显示到国家(地区)
IP 属地:新加坡
加入CSDN时间: 2014-08-17
博客简介:

dsbwyx's blog

博客描述:
努力提高姿势中...
查看详细资料
个人成就
  • 获得4次点赞
  • 内容获得1次评论
  • 获得25次收藏
  • 博客总排名272,067名
创作历程
  • 7篇
    2018年
  • 3篇
    2017年
  • 5篇
    2016年
  • 2篇
    2014年
成就勋章
TA的专栏
  • 操作系统
    3篇
  • linux
    3篇
  • 进程
    1篇
  • 线程调度
    1篇
  • 同步互斥
    1篇
  • server
    1篇
  • 线程
    1篇
  • 算法
    10篇
  • 机器学习
    1篇

TA关注的专栏 0

TA关注的收藏夹 0

TA关注的社区 0

TA参与的活动 0

创作活动更多

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

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

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

  • 文章

  • 专栏

  • 代码仓

  • 资源

  • 收藏

  • 关注/订阅/互动

  • 社区

  • 帖子

  • 问答

  • 课程

  • 视频

搜索 取消

xv6操作系统整体报告

发布资源 2014.10.14 ·
docx

微型操作系统xv6源码

发布资源 2014.10.10 ·
rar

Leetcode #516. Longest Palindromic Subsequence

Leetcode #516. Longest Palindromic Subsequence 题目 https://leetcode.com/problems/longest-palindromic-subsequence/description/ 代码 比较典型的动态规划问题。递归写了一遍TLE了,循环方法没有问题。 class Solution { public: ...
原创
博文更新于 2018.05.06 ·
238 阅读 ·
1 点赞 ·
0 评论 ·
0 收藏

Leetcode #39. Combination Sum

Leetcode #39. Combination Sum 题目 https://leetcode.com/problems/combination-sum/description/ 代码 class Solution { public: void foo(vector<int>& candidates, int target, int cidx, vect...
原创
博文更新于 2018.04.12 ·
259 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Leetcode #121. Best Time to Buy and Sell Stock

Leetcode #121. Best Time to Buy and Sell Stock 题目 https://leetcode.com/problems/best-time-to-buy-and-sell-stock/description/ 代码 class Solution { public: int maxProfit(vector<int>& pr...
原创
博文更新于 2018.04.11 ·
220 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Leetcode #231. Power of Two

Leetcode #231. Power of Two 题目 https://leetcode.com/problems/power-of-two/description/ 代码 我的: class Solution { public: bool isPowerOfTwo(int n) { if (n <= 0) return false; ...
原创
博文更新于 2018.04.11 ·
207 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Leetcode #780. Reaching Points

Leetcode #780. Reaching Points 题目 https://leetcode.com/problems/reaching-points/description/ 代码 一开始的思路是逆向推,目的坐标(tx, ty)肯定是由(tx-ty, ty)或(tx, ty-tx),但是坐标限定不为负数,因此比较tx、ty的大小可以唯一确定上一步的步骤 于是有: cl...
原创
博文更新于 2018.04.10 ·
298 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Leetcode #746. Min Cost Climbing Stairs

Leetcode #746. Min Cost Climbing Stairs 题目 https://leetcode.com/problems/min-cost-climbing-stairs/description/ 代码 Simple Question. 没啥好说的,数组那里优化下,用两个变量就可以。 class Solution { public: int minCo...
原创
博文更新于 2018.04.10 ·
224 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Leetcode #395. Longest Substring with At Least K Repeating Characters

Leetcode #395. Longest Substring with At Least K Repeating Characters 题目链接 https://leetcode.com/problems/longest-substring-with-at-least-k-repeating-characters/description/ 代码 思路:首先检查当前字符串是否满足...
原创
博文更新于 2018.04.10 ·
200 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Leetcode #7. Reverse Integer

class Solution: def reverse(self, x): """ :type x: int :rtype: int """ ret = 0 nega = 0 if x > 0 else 1 if nega: x = -x
原创
博文更新于 2017.12.26 ·
268 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Ubuntu下安装GPU版xgboost python库

安装过程见官方文档:http://xgboost.readthedocs.io/en/latest/build.html 主要有以下两步 1. 下载源代码 git clone --recursive https://github.com/dmlc/xgboost 2. 编译GPU共享库 cd xgboost mkdir build cd build cmake .. -DUSE_C
原创
博文更新于 2017.11.04 ·
1681 阅读 ·
0 点赞 ·
0 评论 ·
1 收藏

#6. ZigZag Conversion

1. 题目ZigZag字符串的描述见题目链接。给定行号,对于一个ZigZag字符串,需要按行号顺序输出每行的内容。2. 代码# 比较简单,将ZigZag字符串按顺序遍历,每个字符放入对应行中 class Solution(object): def convert(self, s, numRows): """ :type s: str :type
原创
博文更新于 2017.02.10 ·
314 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

leetcode #4: Median of Two Sorted Arrays

题目链接: Median of Two Sorted Arrays 这道题坑还是有点多的,刚看到的时候第一反应是:这不就是归并排序....还是图样啊。所以先这样提交了: class Solution(object): def findMedianSortedArrays(self, nums1, nums2): """ :type nums1:
原创
博文更新于 2016.07.31 ·
380 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

nachos lab1-线程机制

总体概述本次lab的主要内容是拓展nachos的线程机制,在nachos的线程模型中添加tid和uid,并添加相应的管理机制。本次lab的重要知识点在于对nachos中线程具体实现方式的理解, 任务完成情况 Exercise 1 –> Y Exercise 2 –> Y Exercise 3 –> Y Exercise 4 –> Y 具体完成情况如下所示:Exercise 1 调研 调研Lin
原创
博文更新于 2016.07.31 ·
6939 阅读 ·
2 点赞 ·
0 评论 ·
10 收藏

TCPCopy

简介TCPCopy是一种请求复制(所有基于tcp的packets)工具,可以把在线流量导入到测试系统中。 Architecture如上图所示,tcpcopy由以下三个部分组成online serveronline server上运行tcpcopy,在网络层复制raw packets,tcpcopy修改包的目地址,发给测试机target servertarget server被测应用处理tcpcop
原创
博文更新于 2016.07.31 ·
728 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

nachos lab3-线程同步

总体概述本次lab的主要内容是拓展同步机制,实现同步互斥实例本次lab的重要知识点在于对同步互斥原理的理解 任务完成情况 Exercise 1 –> Y Exercise 2 –> Y Exercise 3 –> Y Exercise 4 –> Y Challenge 1 –> Y Challenge 2 –> Y 具体完成情况如下所示:Exercise 1 调研 调研Linux中实现的同步机
原创
博文更新于 2016.07.31 ·
2699 阅读 ·
0 点赞 ·
0 评论 ·
2 收藏

nachos lab2-线程调度

总体概述本次lab的主要内容是扩展线程调度算法,实现基于优先级的抢占式调度算法我认为,本次lab的关键在于理解Timer、Scheduler和Interrupt之间的关系,从而理解线程之间是如何进行调度的 任务完成情况 Exercise 1 –> Y Exercise 2 –> Y Exercise 3 –> Y Challenge 1 –> Y 具体完成情况如下所示:Exercise 1 调研
原创
博文更新于 2016.07.31 ·
5830 阅读 ·
0 点赞 ·
1 评论 ·
13 收藏

xv6阅读报告一(中间图片懒得贴了==)

xv6中断初始化
原创
博文更新于 2014.10.12 ·
2805 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

ruby2.1.1安装时编译源码,readline.c出现错误

系统是ubuntu14.04 因为之前实验室机子坏了xu'yao'chong'zhuang
原创
博文更新于 2014.10.10 ·
866 阅读 ·
1 点赞 ·
0 评论 ·
0 收藏
加载更多