码迷,mamicode.com
首页 > 2015年04月03日 > 全部分享
java socket编程
java socket编程...
分类:编程语言   时间:2015-04-03 09:23:52    阅读次数:153
ssh与设计模式
ssh与设计模式...
分类:其他好文   时间:2015-04-03 09:21:14    阅读次数:99
Android图像处理
在imooc上看了eclipse_xu的课程《Android图像处理》,照葫芦画瓢写了一个Demo: 看一下效果图: 核心代码:package com.zms.imageprocess;import android.app.Activity; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import...
分类:移动开发   时间:2015-04-03 09:20:52    阅读次数:172
java并发
Java多线程编程...
分类:编程语言   时间:2015-04-03 09:23:10    阅读次数:159
HDU-1202-The calculation of GPA(恶心水题)
The calculation of GPA Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 21967    Accepted Submission(s): 5046 Problem Description 每学...
分类:其他好文   时间:2015-04-03 09:20:59    阅读次数:161
android通过蓝牙实现两台手机传输数据
今天学习了android蓝牙方面的基础知识,包含了打开和关闭蓝牙的操作,以及两部手机之间通过蓝牙实现的数据传输。下面看代码: 首先,需要在清单文件里添加蓝牙操作的权限: 打开蓝牙的两种方式: 第一种:Intent intent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE); startActivityForResult(in...
分类:移动开发   时间:2015-04-03 09:22:38    阅读次数:582
阿里笔试题,乱序序列的保序输出。
按自己的思想简单写了一下,多多交流。#include "stdafx.h" int insertInOrder(int *a,int num,int len){ int position; if (a[0]==0) { a[0] = num; position = 1; } for (int i = 0; i a[i] && n...
分类:其他好文   时间:2015-04-03 09:22:10    阅读次数:120
杭电 HDU 2674 N!Again
N!Again Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 3871    Accepted Submission(s): 2070 Problem Description WhereIsHeroFrom:      ...
分类:其他好文   时间:2015-04-03 09:21:10    阅读次数:113
POJO
pojo...
分类:其他好文   时间:2015-04-03 09:20:49    阅读次数:94
使用HTML5 跨域共享特性解决AJAX跨域数据同步问题
使用HTML5 跨域共享特性解决AJAX跨域数据同步问题...
分类:Web程序   时间:2015-04-03 09:20:27    阅读次数:195
UVA - 10716 - Evil Straw Warts Live (简单模拟)
UVA - 10716 Evil Straw Warts Live Time Limit: 3000MS   Memory Limit: Unknown   64bit IO Format: %lld & %llu Submit Status Description Problem D: Evil Straw Warts...
分类:其他好文   时间:2015-04-03 09:22:28    阅读次数:134
【bestcoder #35】AB题解
bestcoder #35 AB详细题解+代码~...
分类:其他好文   时间:2015-04-03 09:19:38    阅读次数:133
[LeetCode 79] Word Search
题目链接:word-search /** * Given a 2D board and a word, find if the word exists in the grid. The word can be constructed from letters of sequentially adjacent cell, where "adjacent" cells...
分类:其他好文   时间:2015-04-03 09:19:28    阅读次数:148
杭电 HDU ACM 圆桌会议
圆桌会议 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 3356    Accepted Submission(s): 2351 Problem Description HDU ACM集训队的队员在暑假集训时经常要讨论自...
分类:其他好文   时间:2015-04-03 09:19:06    阅读次数:137
WPF Data Binding之控件作为源(Source)与路径(Path)【一】
Binding 的源也就是数据的源头。Binding对源的要求并不苛刻------只要它是一个对象,并且通过属性(Property)公开自己的数据,它就能作为Binding 的源。     前面一个例子已经向大家证明,如果想让作为Binding源的对象具有自动通知Binding自己属性值已经已经变化的能力,那么就需要让类实现INotifyChanged接口并在属性的Set语句中激发Pro...
分类:Windows程序   时间:2015-04-03 09:21:41    阅读次数:424
Python标准库:内置函数setattr(object, name, value)
本函数实现增加或设置对象object一个属性名称name,并设置相应的值value。一般情况与getattr()配套使用。例子:#setattr() class Foo: pass foo = Foo() setattr(foo, 'name', 'caijunsheng') print(foo.name)结果输出如下:caijunsheng蔡军生  QQ: 9073204  ...
分类:编程语言   时间:2015-04-03 09:21:31    阅读次数:141
hdu 1166 敌兵布阵(线段树)
敌兵布阵 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 51303    Accepted Submission(s): 21473 Problem Description C国的死对头A国这段时间正在进...
分类:其他好文   时间:2015-04-03 09:21:09    阅读次数:124
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!