首页 > 2015年03月15日 > 全部分享
[Leetcode]Search Insert Position
Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in or...
分类:其他   时间:2015-03-15 02:01:19    收藏:0  评论:0  赞:0  阅读:173
lpc1768的PWM使用
//p2.0 pwm1.1void ALS_Init(void) //初始化{ LPC_SC->PCONP |= (1PCLKSEL0 &= ~(3PCLKSEL0 &= ~(3PINSEL4 &= ~(0X03LPINMODE4 &= ~(0X03LPINMODE_OD2 &= ~(0X01TCR...
分类:其他   时间:2015-03-15 02:01:01    收藏:0  评论:0  赞:0  阅读:2306
LPC1768的usb使用--硬件篇
LPC1768芯片带有USB设备控制器,前面写的文章都是在说比较简单的设备驱动,今天来说复杂一点的 首先是硬件层的配置#ifndef __USBHW_H__#define __USBHW_H__#include "debugSerial.h"#include "usbreg.h"#inclu...
分类:其他   时间:2015-03-15 02:00:41    收藏:0  评论:0  赞:0  阅读:261
lpc1768的rit使用
LPC1768在系统滴答定时器和通用定时器之外还引入了一个定时器,叫做重复定时器RIT,该定时器只能用于定时操作,带有一个中断,我个人的感觉,这似乎是为了延时函数设计的一个定时器那么使用该定时器时遵循什么流程?第一,打开时钟第二,我们要确定定时器从pclk分频数值,这要靠另外一个寄存器第三,先关闭定...
分类:其他   时间:2015-03-15 02:00:31    收藏:0  评论:0  赞:0  阅读:692
快速幂模版
快速幂模版快速幂的思想是分治,根据题目的数据要注意long long快速幂普通版,比取余版快,但容易超范围,慎用,一般可用取余版MOD设为INF://快速幂普通版(未取余)long long quickpow(long long n,long long k){ long long res=1;...
分类:其他   时间:2015-03-15 02:00:21    收藏:0  评论:0  赞:0  阅读:264
lpc1768的系统时钟
#define XTAL_FREQ 12000000#define VECT_TAB_OFFSET 0x0000void SystemInit(void){ //PLL0时钟配置 LPC_SC->SCS = 0X00000020; /*使能外部主晶振,频率范围1-20M*/ if (LPC_SC->...
分类:其他   时间:2015-03-15 02:00:11    收藏:0  评论:0  赞:0  阅读:400
Python数据结构(一)
5. Data StructuresThis chapter describes some things you’ve learned about already in more detail, and adds some new things as well.这一章节将更详细的描述你已经学到的东西...
分类:编程语言   时间:2015-03-15 01:59:52    收藏:0  评论:0  赞:0  阅读:342
LPC1768的USB使用--宏定义
#ifndef __USBREG_H#define __USBREG_H/* usb设备中断定义 usb_devintst usb_devinten usb_devintclr usb_devintdet*/#define FRAME_INT 0x00000001 //每隔1MS产生一次帧中断,该中...
分类:其他   时间:2015-03-15 01:59:41    收藏:0  评论:0  赞:0  阅读:308
aizu2249最短路Road Construction
题目链接求让城市1到其他城市在保证最短路的情况下求最小花费,最短路水题。#include #include #include #include using namespace std;const int INF=1e9;struct edge{ int u,v; int len,cost...
分类:其他   时间:2015-03-15 01:59:31    收藏:0  评论:0  赞:0  阅读:289
Print a Binary Tree in Vertical Order
Given a binary tree, print it vertically. The following example illustrates vertical order traversal. 1 / \ 2 3 / ...
分类:其他   时间:2015-03-15 01:59:11    收藏:0  评论:0  赞:0  阅读:187
LPC1768的看门狗定时器使用
void wwdg_init(void){ LPC_SC->PCLKSEL0 |= (3WDCLKSEL &= ~(3WDCLKSEL |= (1WDCLKSEL |= (1WDTC = 0xffff;//设定重载值 LPC_WDT->WDMOD |= (1WDFEED = 0xaa; LPC_WD...
分类:其他   时间:2015-03-15 01:59:01    收藏:0  评论:0  赞:0  阅读:1534
C# 调用AForge类库操作摄像头
如有雷同,不胜荣幸,若转载,请注明最近做项目需要操作摄像头,在网上百度了很多资料,很多都是C#调用window API 发送SendMessage,实现操作摄像头,但是C#调用window API的时候因为驱动的问题,总是弹出视频选择对话框,让人很是无语,看到大牛们有的截获到了window消息,然后...
分类:Windows开发   时间:2015-03-15 01:58:41    收藏:0  评论:0  赞:0  阅读:529
[Leetcode]Maximum Subarray
Find the contiguous subarray within an array (containing at least one number) which has the largest sum.For example, given the array[?2,1,?3,4,?1,2,1,...
分类:其他   时间:2015-03-15 01:58:31    收藏:0  评论:0  赞:0  阅读:243
如何在WIN7_64环境下安装Oracle10g_64位版本
刚接触Oracle不久,安装部署链接Oracle的时候,出现很多问题,单从这点上来说,SQL Server真是太友好了。文章中可能会出现错误,请甄别。文章重要步骤用黄色背景标出。(最下方有概括版本)建议先浏览一下黄色字体标出的区域,心里有个数,再点开其他帮助链接(其他博客写得都比博主好,怕你看了就逃...
分类:数据库技术   时间:2015-03-15 01:58:21    收藏:0  评论:0  赞:0  阅读:309
【转】SQL中内连接和外连接
如表 ------------------------------------------------- table1 | table2 | ------------------------------------------------- id name |id score | 1 le...
分类:数据库技术   时间:2015-03-15 01:58:11    收藏:0  评论:0  赞:0  阅读:282
Print Nodes in Top View of Binary Tree
Top view of a binary tree is the set of nodes visible when the tree is viewed from the top. Given a binary tree, print the top view of it. The output ...
分类:其他   时间:2015-03-15 01:58:01    收藏:0  评论:0  赞:0  阅读:179
UE4 将本地图片转成UTexture2D 在runtime显示
UFUNCTION(BlueprintCallable, Category = "TextureFromDisk") static class UTexture2D* GetTexture2DFromDiskFile(const FString& FilePath);class UTe...
分类:其他   时间:2015-03-15 01:57:41    收藏:0  评论:0  赞:0  阅读:1436
27、android log日志
一、记住加写sd卡权限二、代码 1 package com.example.logtest; 2 3 import java.io.File; 4 import java.io.IOException; 5 6 import org.apache.log4j.Appender; 7 import.....
分类:移动平台   时间:2015-03-15 01:57:31    收藏:0  评论:0  赞:0  阅读:390
点击响应之hit-TestView
前言:为什么我的UITextView无法滑动了?“当用户触发某一事件(触摸事件或运动事件)后,UIKit会创建一个事件对象(UIEvent),该对象包含一些处理事件所需要的信息。然后事件对象被放到一个事件队列中。这些事件按照先进先出的顺序来处理。当处理事件时,程序的UIApplication对象会从...
分类:其他   时间:2015-03-15 01:57:21    收藏:0  评论:0  赞:0  阅读:1825
LPC1768的USB使用-枚举过程
枚举过程如下#ifndef __USBCORE_H__#define __USBCORE_H__/* USB端点0 发送数据结构体*/typedef struct _USB_EP_DATA{ U8 *pData; U16 Count;} USB_EP_DATA;/* USB全局变量 */extern...
分类:其他   时间:2015-03-15 01:57:02    收藏:0  评论:0  赞:0  阅读:324
1537条   上一页 1 ... 68 69 70 71 72 ... 77 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!