码迷,mamicode.com
首页 >  
搜索关键字:using password: yes    ( 53562个结果
HttpOnly
Contents1 Overview1.1 Who developed HttpOnly? When?1.2 What is HttpOnly?1.3 Mitigating the Most Common XSS attack using HttpOnly1.3.1 Using Java to Se...
分类:其他好文   时间:2014-06-06 15:04:08    阅读次数:805
【HDOJ】3308 LCIS
线段树,题目感觉比较难,看别人思路做的。还得继续练这个专题。 1 #include 2 #include 3 #include 4 using namespace std; 5 6 #define MAXN 100005 7 #define lson l, mid, rtb) ...
分类:其他好文   时间:2014-06-06 14:22:09    阅读次数:240
hdu 1.3.4 shǎ崽 OrOrOrOrz
简单的排序,注意输出即可#include #include using namespace std;int main(){ int a[10001]; int n,i; //int t = 0; while(cin>>n) { //if(t)cout>a[...
分类:其他好文   时间:2014-06-06 13:53:51    阅读次数:209
topcoder SRM 522 DIV2 FibonacciDiv2
关于斐波那契数列,由于数据量比较小, 直接打表了,代码写的比较戳#include #include #include using namespace std;class FibonacciDiv2{public: vector table; void make_table(){ ...
分类:其他好文   时间:2014-06-06 13:18:11    阅读次数:305
HDU 1394 - Minimum Inversion Number
求环上的逆序对最小值,这题据说应该是用线段树去做,我先拍了一个裸的,总复杂度O(N2): 1 #include 2 #include 3 using namespace std; 4 5 #define MAXN 5000 6 7 int N; 8 int A[MAXN], sorte...
分类:其他好文   时间:2014-06-06 13:13:01    阅读次数:200
ZOJ1366经典dp(多重背包转01背包+优化空间)
1 //zoj1366类似背包的问题 2 //争取一遍AC 3 #include 4 #include 5 #include 6 #define maxn 13 7 using namespace std; 8 9 int k[maxn];10 int n1[maxn];11 ...
分类:其他好文   时间:2014-06-06 13:05:58    阅读次数:250
Using DayPilot (Outlook-Like Calendar/Scheduling Control for ASP.NET)
http://www.codeproject.com/Articles/14107/Using-DayPilot-Outlook-Like-Calendar-Scheduling-Co
分类:Web程序   时间:2014-06-06 12:21:05    阅读次数:181
Use_Case
What is Use-Case 2.0?Use Case: A use case is all the ways of using a system to achieve a particular goal for a particular user. Takentogether the set ...
分类:其他好文   时间:2014-06-06 11:37:46    阅读次数:236
Insertion Sort List
Sort a linked list using insertion sort./** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNo...
分类:其他好文   时间:2014-06-06 10:39:38    阅读次数:212
C#文件授权下载
1、创建HttpHandlerusing System;using System.Collections.Generic;using System.Text;using System.Web;namespace Handler{ public class DownloadHandler : I...
分类:其他好文   时间:2014-06-06 10:35:31    阅读次数:168
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!