码迷,mamicode.com
首页 >  
搜索关键字:using    ( 53562个结果
使用Linq 来解决Datatable 去除数据重复
在这也说明下,除此之外还可以通过 DataView 的方式来处理,当个人觉得这有点不好用。这里就不多作说明了代码比较简单,直接看代码using System;using System.Collections.Generic;using System.Data;using System.Linq;na...
分类:其他好文   时间:2015-10-10 21:21:32    阅读次数:196
EditorWindow 和MenuItem
using UnityEngine;using System.Collections;using UnityEditor;public class ClipEventEditor : EditorWindow{ /// /// MenuItem属性允许你添加菜单项到主菜单和检视面板上下...
分类:Windows程序   时间:2015-10-10 20:11:04    阅读次数:225
POJ 2689 筛法求素数
DES:给出一个区间[L, U]。找出这个区间内相邻的距离最近的两个素数和距离最远的两个素数。其中1 2 #include 3 #include 4 #include 5 using namespace std; 6 7 #define N 500000 8 #define len 1000...
分类:其他好文   时间:2015-10-10 20:08:15    阅读次数:276
mysql慢查询Slow Query Log和未使用索引(Not Using Indexes)查询配置和使用
mysql的“慢查询”指的是超过了允许的最大查询时间(long_query_time)的sql语句,而“未使用索引”查询顾名思义就是查询语句没有使用到索引的sql语句。慢查询配置和使用在msyqld的启动配置文件或命令行参数中增加以下参数long_query_time=1log-slow-queri...
分类:数据库   时间:2015-10-10 17:22:31    阅读次数:251
D3.js Data-Driven Documents
D3.js is a JavaScript library for manipulating documents based on data. D3 helps you bring data to life using HTML, SVG, and CSS. D3’s emphasis on web...
分类:Web程序   时间:2015-10-10 17:16:09    阅读次数:424
Codeforces Round #324 (Div. 2) E
这题贪心,考虑先放第一个,然后从第一个数在p中的位置, 不断的往前走,和在他后面的那些数组进行交换,因为这样交换可以提高最大的效率,就是说你花费了1但是使得两个点都朝他的木匾节点减少了1#include #include #include #include #include using namesp...
分类:其他好文   时间:2015-10-10 17:01:02    阅读次数:127
[算法练习] 反转链表
题目说明: 输入一个链表的头结点,反转该链表,并返回反转后链表的头结点。链表结点定义如下:struct ListNode{ int m_nKey; ListNode* m_pNext;}; 程序代码: #include #include using namespace std; struct Lis...
分类:编程语言   时间:2015-10-10 16:47:00    阅读次数:179
注册时的图片验证码
生成图片验证码 1 using System; 2 using System.Data; 3 using System.Configuration; 4 using System.Web; 5 using System.Web.Security; 6 using System.Web.U...
分类:其他好文   时间:2015-10-10 15:36:07    阅读次数:186
使用jQuery AJAX读取二进制数据
READING BINARY DATA USING JQUERY AJAXhttp://www.henryalgus.com/reading-binary-files-using-jquery-ajax/Query is an excellent tool to make web development easy and straightforward. It helps while doing ...
分类:Web程序   时间:2015-10-10 14:01:56    阅读次数:405
gulp
gulp.js - the streaming build system Efficient. Using the power of node streams, gulp gives you fast builds that don't write intermediary files to dis...
分类:其他好文   时间:2015-10-10 10:26:16    阅读次数:178
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!