10 2016 档案

摘要:当电脑同时连接有线和WiFi时(有线连接为内网,WiFi为外网),会出现内网和外网内容无法同时访问的情况。 本方法实现内网和外网的同时访问。 第一步: 输入指令 “route print ” 查看路由表; 第二步: 输入“route delete 0.0.0.0” 删除默认路由; 第三步: 输入“r 阅读全文
posted @ 2016-10-23 10:01 花椰菜菜菜菜 阅读(485) 评论(0) 推荐(0)
摘要:168. Excel Sheet Column Title Given a positive integer, return its corresponding column title as appear in an Excel sheet. For example: 阅读全文
posted @ 2016-10-11 22:29 花椰菜菜菜菜 阅读(119) 评论(0) 推荐(0)
摘要:165. Compare Version Numbers Compare two version numbers version1 and version2.If version1 > version2 return 1, if version1 < version2 return -1, othe 阅读全文
posted @ 2016-10-11 19:40 花椰菜菜菜菜 阅读(101) 评论(0) 推荐(0)
摘要:160. Intersection of Two Linked Lists Write a program to find the node at which the intersection of two singly linked lists begins. For example, the f 阅读全文
posted @ 2016-10-11 10:33 花椰菜菜菜菜 阅读(146) 评论(0) 推荐(0)
摘要:155. Min Stack Design a stack that supports push, pop, top, and retrieving the minimum element in constant time. push(x) -- Push element x onto stack. 阅读全文
posted @ 2016-10-11 09:54 花椰菜菜菜菜 阅读(96) 评论(0) 推荐(0)
摘要:141. Linked List Cycle Given a linked list, determine if it has a cycle in it. Follow up:Can you solve it without using extra space? 判断一个单链表中是否存在环。不利用 阅读全文
posted @ 2016-10-10 21:22 花椰菜菜菜菜 阅读(107) 评论(0) 推荐(0)
摘要:137. Single Number II Given an array of integers, every element appears three times except for one. Find that single one. Note:Your algorithm should h 阅读全文
posted @ 2016-10-10 20:59 花椰菜菜菜菜 阅读(88) 评论(0) 推荐(0)
摘要:136. Single Number Given an array of integers, every element appears twice except for one. Find that single one. Note:Your algorithm should have a lin 阅读全文
posted @ 2016-10-05 17:27 花椰菜菜菜菜 阅读(111) 评论(0) 推荐(0)
摘要:125. Valid Palindrome Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. For example,"A man 阅读全文
posted @ 2016-10-01 16:49 花椰菜菜菜菜 阅读(250) 评论(0) 推荐(0)