zjwreal


  • 首页

  • 标签

  • 分类

  • 归档

  • 站点地图

  • 搜索

深度学习服务器配置 Ubuntu server 16.04+CUDA8.0+cuDNN7+tensorflow1.3

发表于 2018-09-24 | 分类于 Linux
硬件配置 主机:Dell T620塔式服务器 显卡:Nvidia Tesla K20c 系统&驱动配置 Ubuntu Server 16.04 Nvidia driver:375.26 CUDA 8.0 cuDNN 7.0.3 tensorflow1.3 1 ubuntu server系统安 ...
阅读全文 »

LeetCode 19. Remove Nth Node From End of List

发表于 2018-07-27 | 分类于 LeetCode
19. Remove Nth Node From End of List 给定一个链表,删除链表的倒数第 n 个节点,并且返回链表的头结点。 示例: 123给定一个链表: 1->2->3->4->5, 和 n = 2.当删除了倒数第二个节点后,链表变为 1->2-> ...
阅读全文 »

【论文笔记】Reaching agreement in the presence of faults (EIG)

发表于 2018-07-04 | 分类于 论文
这篇论文在1980年发表,是1982年著名的拜占庭将军问题论文的前身。作者Leslie Lamport是2013图灵奖得主,两篇论文引用次数分别为5000+和2000+。该论文提出的算法现在被称为EIG算法(EIG全称指数信息收集),因为消息的数量是和节点数量呈指数关系。 “Reaching A ...
阅读全文 »

网络协议栈性能影响因素及优化技术

发表于 2018-05-23 | 分类于 网络协议栈
影响网络协议栈的性能开销及优化方法如下。 1 网卡中断开销轮询与中断是操作系统与外设进行 I/O 通信的两种主要方式。一般情况下,网络中数据分组的到来具有不可预测性。若采用轮询模式对数据分组进行持续监听,会造成很高的CPU占用率,进而影响系统其他进程的运行效率,故主流操作系统都采用中断来处理网络的 ...
阅读全文 »

LeetCode 13. Roman to Integer

发表于 2018-02-11 | 分类于 LeetCode
13. Roman to IntegerGiven a roman numeral, convert it to an integer. Input is guaranteed to be within the range from 1 to 3999. 思路将输入罗马数字字符串转换为数字 罗马数字 ...
阅读全文 »

LeetCode 12. Integer to Roman

发表于 2018-02-10 | 分类于 LeetCode
12. Integer to RomanGiven an integer, convert it to a roman numeral. Input is guaranteed to be within the range from 1 to 3999. 思路将输入整数转换为罗马数字 罗马数字罗马数 ...
阅读全文 »

LeetCode 9. Palindrome Number

发表于 2018-02-07 | 分类于 LeetCode
9. Palindrome NumberDetermine whether an integer is a palindrome. Do this without extra space. 思路题目要求不能使用额外的空间,所以不能转成字符串来处理。解题思路很简单,将比较原来的数和倒置后的数是否为同一 ...
阅读全文 »

LeetCode 8. String to Integer (atoi)

发表于 2018-02-06 | 分类于 LeetCode
8. String to Integer (atoi)Implement atoi to convert a string to an integer. Hint: Carefully consider all possible input cases. If you want a challeng ...
阅读全文 »

LeetCode 7. Reverse Integer

发表于 2018-02-05 | 分类于 LeetCode
7. Reverse IntegerGiven a 32-bit signed integer, reverse digits of an integer. Example 1: 12Input: 123Output: 321 Example 2: 12Input: -123Output: -32 ...
阅读全文 »

LeetCode 6. ZigZag Conversion

发表于 2018-02-04 | 分类于 LeetCode
6. ZigZag ConversionThe string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display ...
阅读全文 »
12
Jingwei Zheng

Jingwei Zheng

19 日志
5 分类
10 标签
GitHub E-Mail
© 2018 Jingwei Zheng
由 Hexo 强力驱动
|
主题 — NexT.Gemini v5.1.4