代码搜索结果
找到约 1,193 项符合
Q 的代码
q.m
function d=q(z)
% FILE: Q.M
% CALL: d = q(z)
% This function returns the value of Q(z), using the erf(z) command to
% evaluate the Q(z) function.
% z is assumed to be a "scalar" or a vector.
q.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# 警告: 不能编辑或删除该工作区文件!
###############################################################################
Project: "q"=.\q.dsp - Packag
q.dsp
# Microsoft Developer Studio Project File - Name="q" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Console
q.h
main()
{
printf("hello world!");
}
q.plg
Build Log
--------------------Configuration: q - Win32 Debug--------------------
Command Lines
Results
q.exe - 0 error(s), 0 wa
q.txt
函数名: qsort
功 能: 使用快速排序例程进行排序
用 法: void qsort(void *base, int nelem, int width, int (*fcmp)());
程序例:
#include
#include
#include
int sort_function(
xielou.txt
<mark>Q</mark>: 我应该怎样处理内存泄漏?
A: 很简单,只要写“不漏”的代码就完事了啊。显然,如果你的代码到处是new、delete、指针运算,那你想让它“不漏”都难。不管你有多么小心谨慎,君为人,非神也,错误在所难免。最终你会被自己越来越复杂的代码逼疯的——你将投身于与内存泄漏的奋斗之中,对bug们不离不弃,直至山峰没有棱角,地球不再转动。而能让你避免这样困境的技巧也不复杂:你只要倚重隐含在幕后的分配机 ...