美文网首页
ARTS第二周(2018-12-02)

ARTS第二周(2018-12-02)

作者: 无名GOD | 来源:发表于2018-12-02 18:53 被阅读0次
极客时间《左耳听风》发起的ARTS挑战怎么参加?
左耳朵耗子专栏《左耳听风》 用户自发每周完成一个ARTS

1.Algorithm:每周至少做一个 leetcode 的算法题

https://leetcode-cn.com/problems/swap-nodes-in-pairs/description/

24.给定一个链表,两两交换其中相邻的节点,并返回交换后的链表。

代码:

public ListNode swapPairs1(ListNode head) {
        ListNode h = new ListNode(-1);
        h.next = head;
        ListNode pre = h;
        ListNode node1 = null;
        ListNode node2 = null;
        ListNode lat = null;
        while (pre.next !=null && pre.next.next !=null) {
            node1 = pre.next;
            node2 = node1.next;
            lat = node2.next;
        
            pre.next = node2;
            node2.next = node1;
            node1.next = lat;

            pre = node1;
            
        }
        return h.next;
    }

2.Review:阅读并点评至少一篇英文技术文章

MySQL 8.0 Reference Manual / Alternative Storage Engines

mysql8.0 支持的存储引擎

  • InnoDB:默认存储引擎。
  • MyISAM
  • Memory
  • CSV
  • Archive
  • Blackhole
  • NDB
  • Merge
  • Federated
  • Example

3.Tip:学习至少一个技术技巧

后台管理框架

比较不错的源码,更新很频繁,技术也比较新

4.Share:分享一篇有观点和思考的技术文章

Mysql实战45讲

可以了解数据表比较底层的原理,帮助我们更好的使用和设计数据库

相关文章

  • ARTS第二周(2018-12-02)

    1.Algorithm:每周至少做一个 leetcode 的算法题 https://leetcode-cn.com...

  • ARTS第二周

    前言 ARTS第二周 Algorithm 深度优先搜索 题目: 岛屿数量 classSolution{ int[]...

  • ARTS 第二周

    Algorithm 58. Length of Last Word Given a string s consis...

  • ARTS第二周

    Algorithm leetcode125(125. Valid Palindrome),判断是否回文,只考虑a-...

  • ARTS第二周

    1.Algorithm:两个数组的交集 2.Review:Effective Go小记一 3.Tip:kibana...

  • 2020-01-12-ARTS-一月第二周

    layout: posttitle: ARTS-2020一月第二周subtitle: 一月第...

  • ARTS打卡,第二周

    每周完成一个ARTS:1.A(Algorithm)每周至少做一个 leetcode 的算法题2.R(Review)...

  • ARTS第二周20200526

    Algorithm 最小路径和 给定一个包含非负整数的 m x n 网格,请找出一条从左上角到右下角的路径,使得路...

  • ARTS打卡第二周

    Tip: Jenkins的CI&CD功能 Algorithm: Share: Review: New AI pro...

  • ARTS挑战-第二周

    Algorithm Leetcode-75 Review File System Programming Guid...

网友评论

      本文标题:ARTS第二周(2018-12-02)

      本文链接:https://www.haomeiwen.com/subject/dkcscqtx.html