代码搜索:split
找到约 9,328 项符合「split」的源代码
代码结果 9,328
www.eeworm.com/read/362558/9992706
txt 8_15.txt
void split (Mbtree oldp, Mbtree *newp)
{/* B_树的分裂过程 */
int s,n,i;
s=ceil((float)m/2); /* s= */
n=m-s;
*newp=(Mbtree)malloc(sizeof(Mbtnode));
(*newp)->keynum=n;
(*newp)->parent=o
www.eeworm.com/read/278235/10556304
2 changelog.2
1988-09-01 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
* Version 18.52 released.
* fortran.el (fortran-split-line): Add space before continuation-char.
1988-08-29 Richard Stallman (rms a
www.eeworm.com/read/275831/10794380
rb 15 - writing a cgi script.rb
#!/usr/bin/ruby
# ps.cgi
processes = %x{ps aux}.collect do |proc|
'' + proc.split(/\s+/, 11).join('') + ''
end
puts 'Content-Type: text/html'
# Output other HTTP headers