heylinart

导航

2017年9月12日 #

Navie level questions

摘要: 1. Binary Tree Maximum Node Find the maximum node in a binary tree,return the node. 阅读全文

posted @ 2017-09-12 10:14 heylinart 阅读(126) 评论(0) 推荐(0) 编辑

2017年6月21日 #

Singleton Summary

摘要: Java Singleton:Singleton pattern restricts the instantiation of a class and ensures that only one instance of the class exists in the java virtual machine.The singleton class must provide a global acc... 阅读全文

posted @ 2017-06-21 11:27 heylinart 阅读(140) 评论(0) 推荐(0) 编辑

2017年6月14日 #

Solutions and Summay for Linked List Naive and Easy Questions

摘要: 1.Remove Linked List Elements package linkedlist; /* * Question: Remove all elements from a linked list of integers that have value val. */ public cla 阅读全文

posted @ 2017-06-14 15:26 heylinart 阅读(135) 评论(0) 推荐(0) 编辑

595. Big Countries --- SQL related from leetcode

摘要: 595. Big Countries There is a table World+-----------------+------------+------------+--------------+---------------+| name | continent | area | population | gdp |+------... 阅读全文

posted @ 2017-06-14 14:43 heylinart 阅读(376) 评论(0) 推荐(0) 编辑

2017年6月7日 #

Solutions and Summay for Linked List Naive and Easy Questions

摘要: 1.Remove Linked List Elements 2.Add Two Numbers 3.Delete Node in the Middle of Singly Linked List 4.Insertion Sort List 5.Merge Two Sorted Lists 6. Nt 阅读全文

posted @ 2017-06-07 14:47 heylinart 阅读(135) 评论(0) 推荐(0) 编辑

2017年6月1日 #

AWS–Sysops notes

摘要: Monitoring, Metrics and Analysis 1.CouldWatch Introduction2.EC2 Status Troubleshooting3.Create A CouldWatch Role4.Monitoring EC2 with Custom metrics5. 阅读全文

posted @ 2017-06-01 13:22 heylinart 阅读(184) 评论(0) 推荐(0) 编辑

Linked List

摘要: 链表是线性表的a56爆大奖在线娱乐。线性表是最基本,最简单也是最常见的a56爆大奖在线娱乐数据结构。线性表中数据元素之间的关系是一对一的关系,除了第一个和最后一个数据元素外,其他数据元素都是首尾相接的。线性表有两种存储方式,a56爆大奖在线娱乐是顺序存储结果,另a56爆大奖在线娱乐是链式存储结构。数组就是a56爆大奖在线娱乐最为常见的典型的顺序存储结构。相反,链式存储结构就是两个相邻的元素在内存中可能不是相邻的,每一个元素都有一个指针域,指针域一般是存储着到下一个元素的指针。... 阅读全文

posted @ 2017-06-01 11:22 heylinart 阅读(195) 评论(0) 推荐(0) 编辑

All About Linked List

摘要: 452. Remove Linked List Elements Naive 21 % 167. Add Two Numbers Easy 46 % 372. Delete Node in the Middle of Singly Linked List Easy 31 % 173. Insertion Sort List Easy 39 % 165. Merge Two Sorted Lists... 阅读全文

posted @ 2017-06-01 10:01 heylinart 阅读(150) 评论(0) 推荐(0) 编辑

2017年5月31日 #

datatable fix error–Invalid JSON response

摘要: This error is pretty common. Meaning:When loading data by Ajax(ajax|option).DataTables by default, expects the data loaded to be valid JSON.DataTables warning:table id ={id} – Invalid JSON responseIt ... 阅读全文

posted @ 2017-05-31 18:41 heylinart 阅读(1947) 评论(0) 推荐(0) 编辑