码迷,mamicode.com
首页 >  
搜索关键字:using password: yes    ( 53562个结果
[Android]Webview中JS接口调用Java-版本问题
问题:The javascript to java bridge on 2.3 Gingerbread is causing crashes. This is 100% reproducible using the WebViewDemo application from here: http:/....
分类:移动开发   时间:2014-06-20 08:53:36    阅读次数:320
一种全排列
1 #include 2 #include 3 using namespace std; 4 5 #define N 4 6 7 void fullarrange(char num[], int len, int index) { 8 if(index == len) { 9 ...
分类:其他好文   时间:2014-06-20 08:51:28    阅读次数:293
实例365(11)---------数组的基本操作(一)
一:获取二维数组的行数与列数,截图二:代码using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Lin...
分类:其他好文   时间:2014-06-13 14:01:56    阅读次数:216
C# 自定义重绘DataGridView
using System.Collections.Generic;using System.ComponentModel;using System.Diagnostics;using System.Linq;using System.Text;using System.Windows.Forms;u...
分类:Windows程序   时间:2014-06-13 13:48:34    阅读次数:830
C# 自定义重绘TextBox
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Drawing;using System.Drawing.Drawing2D;using System.Win...
分类:其他好文   时间:2014-06-13 13:47:28    阅读次数:299
C# 制作透明窗体
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:Windows程序   时间:2014-06-13 13:19:48    阅读次数:367
[leetcode] Insertion Sort List
题目链接: here。题目描述: Sort a linked list using insertion sort. 题目要求使用插入排序的方法来实现单链表的排序。插入排序是一种简单的排序,算法描述参考维基百科,或者《算法导论》。 下面是我实现的代码: 1 /** 2 Author:...
分类:其他好文   时间:2014-06-12 00:39:40    阅读次数:284
C# 自定义重绘TabControl
using System.Drawing;using System.Windows.Forms;using System.Drawing.Drawing2D;using System.Runtime.InteropServices;using System;using System.Drawing....
分类:其他好文   时间:2014-06-12 00:08:28    阅读次数:1357
十五周 项目1 工资数据的输入
/* 输入员工工资1000-10000之间,并按从大到小输出*/ #include using namespace std; int main( ) { double salarys[500]; int n=0; double t; while(cin>>salarys[n]) { n++; //从cin流读取数据 ...
分类:其他好文   时间:2014-06-07 15:36:38    阅读次数:191
uva 11987 Almost Union-Find (并查集)
题目大意: 三个操作。 1. 合并两个集合 2.把第一个元素放到第二个集合里 3.输出集合的数量和和。。 思路分析: 要用p记录这个元素所在集合编号,然后用编号建立并查集。 #include #include #include #include using namespace std; typedef long long LL; int set[111111...
分类:其他好文   时间:2014-06-07 12:52:40    阅读次数:267
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!