摘要: leetcode -Delete Node in a Linked ListWrite a function to delete a node (except the tail) in a singly linked list, given only access to that node.Supp... 阅读全文
posted @ 2015-07-22 09:57 cnblogshnj 阅读(141) 评论(0) 推荐(0) 编辑
摘要: leetcode - Linked List Cycle IIGiven a linked list, return the node where the cycle begins. If there is no cycle, return null. Follow up:Can you solve... 阅读全文
posted @ 2015-07-14 17:53 cnblogshnj 阅读(137) 评论(0) 推荐(0) 编辑
摘要: leetcode -Palindrome Linked ListGiven a singly linked list, determine if it is a palindrome.Follow up:Could you do it in O(n) time and O(1) space? 1 /... 阅读全文
posted @ 2015-07-14 14:55 cnblogshnj 阅读(168) 评论(0) 推荐(0) 编辑
摘要: Installation1. Download the latest support version of SDAP installer from the Dashboard2. Log on to system as root user.3. Run the bin file, for examp... 阅读全文
posted @ 2015-07-08 17:30 cnblogshnj 阅读(460) 评论(0) 推荐(0) 编辑
摘要: Installation1. Download the latest support Netezza installer from Netezza homepage2. Log on to system as root user.3. Uncompress the install package, ... 阅读全文
posted @ 2015-07-08 17:28 cnblogshnj 阅读(406) 评论(1) 推荐(0) 编辑
摘要: Create:1 Register a IBM id and log in IBM Bluemix. https://console.ng.bluemix.net2 Go to "DASHBOARD" and create a space.3 Find ADD A SERVICE OR API an... 阅读全文
posted @ 2015-07-08 17:01 cnblogshnj 阅读(650) 评论(0) 推荐(0) 编辑
摘要: FTP 是File Transfer Protocol(文件传输协议)的英文简称。常用命令:1.登陆: ftp [hostname]2.显示文件信息:ls3.下载文件: get [filename]4.上传文件: put [filename]5.退出: bye6.帮助: help传输模式:Binar... 阅读全文
posted @ 2015-07-08 16:58 cnblogshnj 阅读(121) 评论(0) 推荐(0) 编辑
摘要: leetcode -Valid PalindromeGiven a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.For example,"A ... 阅读全文
posted @ 2015-06-22 20:25 cnblogshnj 阅读(99) 评论(0) 推荐(0) 编辑
摘要: leetcode - Pascal's TriangleGivennumRows, generate the firstnumRowsof Pascal's triangle.For example, givennumRows= 5,Return[ [1], [1,1], [1,2... 阅读全文
posted @ 2015-06-19 17:51 cnblogshnj 阅读(98) 评论(0) 推荐(0) 编辑
摘要: leetcode - Min StackDesign a stack that supports push, pop, top, and retrieving the minimum element in constant time.push(x) -- Push element x onto st... 阅读全文
posted @ 2015-06-19 16:01 cnblogshnj 阅读(97) 评论(0) 推荐(0) 编辑