码迷,mamicode.com
首页 >  
搜索关键字:graph processing sys    ( 25857个结果
C#导出数据至excel模板
开源分享最近一个客户要做一个将数据直接输出到指定格式的Excel模板中,略施小计,搞定其中包含了对Excel的增行和删行,打印预览,表头,表体,表尾的控制using System;using System.Collections.Generic;using System.Linq;using Sys...
分类:其他好文   时间:2014-05-09 04:33:07    阅读次数:495
leetcode -day11 Clone Graph & Palindrome Partitioning I II
1、Clone Graph Clone an undirected graph. Each node in the graph contains a label and a list of its neighbors. OJ's undirected graph serialization: Nodes are labeled uniquely. We use # as...
分类:其他好文   时间:2014-05-09 02:17:58    阅读次数:336
txt 转为 csv 可以通用的 工具
Ruby Txt 转为 CSV 通用的工具 require 'csv' namespace :sys_file_conver do desc "把txt数据导入到csv中" task :txt_to_csv => :environment do amount = 100 head_hash = { '对账文件名称' =>[12]...
分类:其他好文   时间:2014-05-08 15:53:08    阅读次数:276
python批量修改指定目录文件名
这小例子只要是说明用python怎么批量修改指定目录的文件名: 记得要把脚本跟修改的文件放在同一个目录下 #encoding:utf-8 import os import sys files = os.listdir('D:\\1') #路径可以自己 for name in files: a = os.path.splitext(name) if a[1] == '.txt': ...
分类:编程语言   时间:2014-05-08 08:16:14    阅读次数:537
疯狂猜成语测试版
首先展示是我们的首界面。下面展示的是初级的代码及界面。using System;using System.Collections.Generic;using System.ComponentModel;using System.Data; using System.Drawing;using Sys...
分类:其他好文   时间:2014-05-08 07:32:09    阅读次数:447
ORACLE uuid自动生成主键
-- Create table create table TECHNOLOGYCOMPANY ( ID VARCHAR2(32) default SYS_GUID() not null, FLOWID VARCHAR2(50), CONPANYID NUMBER, ISCOMMUNICATION VARCHAR2(10) ) ...
分类:数据库   时间:2014-05-07 23:18:29    阅读次数:455
大整数乘法python3实现
由于python具有无限精度的int类型,所以用python实现大整数乘法是没意义的,但是思想是一样的。利用的规律是:第一个数的第i位和第二个数大第j位相乘,一定累加到结果的第i+j位上,这里是从0位置开始算的。代码如下: import sys def list2str(li): while li[0]==0: del li[0] res='' for i in li: res+...
分类:编程语言   时间:2014-05-07 23:13:21    阅读次数:453
Windows 7 fails to go into safe mode. Stuck at classpnp.sys
Thailand的同事笔记本进不了OS,画面上只有一个指针形鼠标,连safemode也进不了,在加载了\windows\system32\drivers\classpnp.sys后停留在同样的画面。首先是觉得系统文件有关,检查下硬盘是否不良,用HDtune查看:有行警告。然后在网上搜索了一圈,发现一个记录了同样问题的B..
分类:Windows程序   时间:2014-05-07 22:02:45    阅读次数:568
sql server 数据页缓冲区的内存瓶颈分析
查看数据库的计数器: SELECT * FROM sys.dm_os_performance_counters **也可以使用系统的性能计监测器查看. 右键图表-> 添加计数器. 添加要监控的项 计数器中一些项的说明 : http://www.cnblogs.com/flysun0311/archi...
分类:数据库   时间:2014-05-07 20:27:55    阅读次数:340
《linux 内核完全剖析》 signal.c 代码分析笔记
signal.c 代码分析笔记 int sys_sgetmask()// 获取当前进程阻塞的信号 { returncurrent->blocked; }   int sys_ssetmask(int newmask) //设置当前进程阻塞信号,确保SIGKILL 和SIGSTOP不被阻塞 { int old=current->...
分类:系统相关   时间:2014-05-07 12:25:12    阅读次数:486
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!