Fork me on GitHub
上一页 1 ··· 5 6 7 8 9 10 下一页
摘要: 题意: You are given two arrays (without duplicates) nums1 and nums2 where nums1’s elements are subset of nums2. Find all the next greater numbers for nu 阅读全文
posted @ 2017-02-08 09:13 insaneXs 阅读(1220) 评论(0) 推荐(0) 编辑
摘要: 题意: Given a List of words, return the words that can be typed using letters of alphabet on only one row's of American keyboard like the image below. E 阅读全文
posted @ 2017-02-07 11:16 insaneXs 阅读(577) 评论(0) 推荐(0) 编辑
摘要: Given a positive integer, output its complement number. The complement strategy is to flip the bits of its binary representation. Note: 题意:给你一个正数,将其转换 阅读全文
posted @ 2017-02-06 17:17 insaneXs 阅读(289) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2017-02-06 16:42 insaneXs 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 为一张表添加外键: 这里我们希望再建一张订单的表为t_order,包含order_id,customer_id和price: 1 CREATE TABLE t_order(order_id INT(11) NOT NULL auto_increment PRIMARY KEY, 2 customer 阅读全文
posted @ 2016-02-26 16:21 insaneXs 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 这篇文章用来记录再学习SQL语句的过程。 首先,我们从简单的创建表开始。创建表的语法是CREATE TABLE 表名(列1的名字 列1的属性,列2的名字 列2的属性...); 如果希望将某一列作为主键,我们可以在该列的属性中添加PRIMARY KEY,并且我们可以用auto_increment属性将 阅读全文
posted @ 2016-02-25 16:49 insaneXs 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 事件 on方法可以将一个事件绑定在jQuery对象上,当你的操作触发了这些事件时,便会调用你所绑定的函数。 例如,给某个超链接绑定点击事件。 1 <head> 2 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 阅读全文
posted @ 2016-02-24 16:46 insaneXs 阅读(261) 评论(0) 推荐(0) 编辑
摘要: 操作DOM对象: 修改文本: jQuery对象的text()和html()方法可以用来获取节点的文本内容和HTML文本。而当你给方法传入参数时,这两个方法可以被用于设置jQuery的文本内容。 还是以之前的代码为例: 1 <div id="test-div"> 2 <p class="color-r 阅读全文
posted @ 2016-02-23 15:57 insaneXs 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 本文是学习廖老师的Javascript全栈教程后的一些笔记。 使用jQuery: 方法一:下载jQuery库,并在html页面中引入,方式如下: 1 <html> 2 <head> 3 <meta http-equiv="Content-Type" content="text/html; chars 阅读全文
posted @ 2016-02-23 13:54 insaneXs 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 环境配置 在Java项目中使用MongoDB,需要在项目中引入mongo.jar这个包。下载地址:下载 请尽量下载较新的版本,本文用的是2.10.1。 连接MongoDB 1 public synchronized static DB getDBConnection() throws Unknown 阅读全文
posted @ 2016-01-29 16:51 insaneXs 阅读(391) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 下一页