上一页 1 ··· 93 94 95 96 97 98 99 100 101 ··· 146 下一页
摘要: 题目链接: poj2942 题意: 有n个人,能够开多场圆桌会议 这n个人中,有m对人有仇视的关系,相互仇视的两人坐在相邻的位置 且每场圆桌会议的人数仅仅能为奇书 问有多少人不能參加 解题思路: 首先构图,将全部的仇视关系视为一条边,最后再取已经得到的图的逆图, 这样图上连接的边就代表能够相邻而坐的 阅读全文
posted @ 2017-05-25 19:04 zsychanpin 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 一、Document自带的定时和延时方法: 循环运行:var timeid = window.setInterval(“方法名或方法”。“延时”);window.clearInterval(timeid); 定时运行:var tmid = window.setTimeout(“方法名或方法”, “延 阅读全文
posted @ 2017-05-25 18:03 zsychanpin 阅读(1364) 评论(0) 推荐(0) 编辑
摘要: COURSES Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 18993 Accepted: 7486 Description Consider a group of N students and P courses. Each 阅读全文
posted @ 2017-05-25 16:29 zsychanpin 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 这次变量主要针对 Mfc 的 Cstring 类型的变量(前面VC 链接Access 数据库 插入变量到表) 思路; 1 把cstring 类型 转为 string 2 string 转 char 数组 3 sprintf 写入数组 string 转 char 数组函数 [cpp] view pla 阅读全文
posted @ 2017-05-25 15:34 zsychanpin 阅读(356) 评论(0) 推荐(0) 编辑
摘要: 今天去面阿里校招研发岗,同去的还有同班的同学,去之前,我看了自己的简历。感觉写得还不算非常花俏,由于之有非常多面经都提示,在简历技能那里写上熟悉时,你得考虑面试官会问你什么。谨慎。 下去4点多过去的,去面试的人非常多,等了一个多钟后。才轮到我。面试时。跟面试官简介了一下,然后就聊到了实习经历。另一些 阅读全文
posted @ 2017-05-25 14:17 zsychanpin 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 简洁是智慧的灵魂,冗长是肤浅的藻饰。-莎士比亚 工作室站点全新改版。像莎士比亚的说的,我们開始尝使用很多其它的线、色块去表现我们的站点,去掉渐变、描边、投影,努力使界面看上去干净、整洁,我们没有特别优秀,所以我们努力向优秀靠齐。摒弃华丽的装饰,尽量让浏览的用户打开站点的时候能够由于站点某个有意思的点 阅读全文
posted @ 2017-05-25 12:42 zsychanpin 阅读(328) 评论(0) 推荐(0) 编辑
摘要: <!doctype html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>javascript结合html5 canvas实现的涂鸦板 - 分享JavaScript-shar 阅读全文
posted @ 2017-05-25 11:30 zsychanpin 阅读(383) 评论(0) 推荐(0) 编辑
摘要: 在多线程程序中。常常要用全局变量来实现多个函数间的数据共享。因为数据空间是共享的。因此全局变量也为全部线程共同拥有。 測试代码例如以下: [cpp] view plaincopy #include <stdio.h> #include <pthread.h> #include <unistd.h> 阅读全文
posted @ 2017-05-25 10:46 zsychanpin 阅读(1154) 评论(0) 推荐(0) 编辑
摘要: /* Write a program to print the value of EOF. */ #include <stdio.h> main() { printf("EOF is %d\n", EOF); } /* Output: EOF is -1 */ 阅读全文
posted @ 2017-05-25 09:50 zsychanpin 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 1. 简单介绍 Zend_Json 提供一个方便的方式来串联(native的)PHP(的变量)和JSON,并将JSON(对象)解码到PHP中。 2. 基本使用方法 Zend_Json的使用包含使用现有的两个公共的static方法 : Zend_Json::encode() 和Zend_Json::d 阅读全文
posted @ 2017-05-25 09:14 zsychanpin 阅读(124) 评论(0) 推荐(0) 编辑
上一页 1 ··· 93 94 95 96 97 98 99 100 101 ··· 146 下一页