上一页 1 ··· 76 77 78 79 80 81 82 83 84 ··· 91 下一页
  2013年11月18日
摘要: 最近又温习了一遍Linux中的信号知识,发现有很多东西以前没有注意到,就通过这篇博客记录一下,巩固一下知识点。 一,信号基础: 信号是什么?为了回答这个问题,首先要从异常说起,这里的异常不是指c++/java中的Exception,而是指控制流的一种突变。 控制流指一个程序的指令序列,它在最简单的情况是平滑的,意味着上一条指令地址和下一条指令地址在存储器中是相邻的,但是程序也可以通过跳转,函数调用和函数返回来造成控制流产生突变,这是一种必要的机制,使得程序能够对由程序变量表示的内部程序中的变化做出反应。 但是一个进程也必须能够对系统状态的变化做出反应,这些系统状态不是被内部程序... 阅读全文
posted @ 2013-11-18 11:14 我的小人生 阅读(365) 评论(0) 推荐(0) 编辑
摘要: package com.howlaa.day03;public class EnumTest { public static void main(String[] args) { WeekDay weekday =WeekDay.FRI; System.out.println(weekday); System.out.println(weekday.name()); System.out.println(weekday.ordinal()); System.out.println(weekday.valueOf("SUN")); System.out.println(wee 阅读全文
posted @ 2013-11-18 11:10 我的小人生 阅读(445) 评论(0) 推荐(0) 编辑
摘要: //******************************************************************* //功能: 在源字符串中找子字符串,并返回子字符串在源字符串首次出现处 //的指针 //输入: pszSrc--源字符串 //pszSub --子字符串 //输出: 无 //返回: 子字符串在源字符串首次出现处的指针,如果未找到,返回NULL //******************************************************************* //char *FindStr(const char *pszSrc, c. 阅读全文
posted @ 2013-11-18 11:06 我的小人生 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 前几天给自己的台式电脑安装了Window 7+CentOS 6.4 Linux双系统,发现在Windows 7下面可以正常使用TP_LINK wn823n无线网卡来连接无线网络,但是在Linux下面,检测不到无线网络,而那个usb无线网卡的指示灯也一直没亮。上网查了一下,说是在Linux下面需要安装无线网卡的驱动也能使用。我的usb无线网卡型号是TP_LINK wn823n,上TP_LINK的官网根据型号下载驱动的时候,发现该无线网卡只有Windows的驱动,没有Linux的,相当不爽。于是继续搜索资料,发现TP_LINK wn823n采用的是RTL的芯片,也就是说,如果有RTL对应芯片的源. 阅读全文
posted @ 2013-11-18 11:03 我的小人生 阅读(5955) 评论(0) 推荐(0) 编辑
  2013年10月18日
摘要: Divide two integers without using multiplication, division and mod operator. 用减法:Time Limit Exceededint divide(int dividend, int divisor) { // Note: The Solution object is instantiated only once. int res = 0; if(divisor == 0) return 0; if(divisor==1)return dividend; else if(divisor ... 阅读全文
posted @ 2013-10-18 11:05 我的小人生 阅读(172) 评论(0) 推荐(0) 编辑
摘要: // GetWanShu.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include "omp.h"#include #include "time.h"//函数声明void getWanShuBySection();void getWanShu();void getWanShuByReduction();int _tmain(int argc, _TCHAR* argv[]){ //串行实现求完数 clock_t start_LiXingLe=clock(); getWanShu(); cloc 阅读全文
posted @ 2013-10-18 10:59 我的小人生 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 把自定义的jar包放在Android的工程的libs目录下,运行程序,会出现一下错误: 10-10 08:34:06.479: E/dalvikvm(486): Could not find class 'com.******', referenced from method com.johnny.testurlmanagerapi.MainActivity.onCreate 10-10 08:34:07.360: E/AndroidRuntime(486): java.lang.NoClassDefFoundError: com.testtt.fuck.fuck 原因是:ja 阅读全文
posted @ 2013-10-18 10:56 我的小人生 阅读(335) 评论(0) 推荐(0) 编辑
  2013年10月17日
摘要: 题目:Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.For example: Given the below binary tree and sum = 22 , 5 / \ 4 8 / / \ 11 13 4 ... 阅读全文
posted @ 2013-10-17 11:15 我的小人生 阅读(241) 评论(0) 推荐(0) 编辑
摘要: Service是Android系统中提供的四大组件之一。它是运行在后台的一种服务,一般声明周期较长,不直接与用户进行交互。 服务不能自己运行,需要通过调用Context.startService()或Context.bindService()方法启动服务。这两个方法都可以启动Service,但是它们的使用场合有所不同。 1. 使用startService()方法启用服务,调用者与服务之间没有关连,即使调用者退出了,服务仍然运行。 如果打算采用Context.startService()方法启动服务,在服务未被创建时,系统会先调用服务的onCreate()方法,接着调用onSta... 阅读全文
posted @ 2013-10-17 11:11 我的小人生 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 题目链接:558 - Wormholes 题目大意:给出n和m,表示有n个点,然后给出m条边,然后判断给出的有向图中是否存在负环。 解题思路:利用Bellman Ford算法,若进行第n次松弛时,还能更新点的权值,则说明有负环的存在。 #include #include #define min(a,b) (a) d[a] + v[i]) { flag = 1; return; } }}int main () { int cas; scanf("%d", &cas); while (cas--) { init(); BF(); printf("%s\n&qu 阅读全文
posted @ 2013-10-17 11:07 我的小人生 阅读(375) 评论(0) 推荐(0) 编辑
上一页 1 ··· 76 77 78 79 80 81 82 83 84 ··· 91 下一页